diff --git a/Cargo.toml b/Cargo.toml index 9c54d10..a27db24 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,12 @@ [package] name = "tree-sitter-python" description = "Python grammar for tree-sitter" -version = "0.21.0" +version = "0.23.0" authors = [ "Max Brunsfeld ", "Amaan Qureshi ", ] license = "MIT" -readme = "README.md" keywords = ["incremental", "parsing", "tree-sitter", "python"] categories = ["parsing", "text-editors"] repository = "https://github.com/tree-sitter/tree-sitter-python" @@ -21,7 +20,10 @@ include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = ">=0.21.0" +tree-sitter-language = "0.1.0" [build-dependencies] cc = "1.0.89" + +[dev-dependencies] +tree-sitter = "0.23.0" diff --git a/Makefile b/Makefile index d2eba6d..7a8185d 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.21.0 +VERSION := 0.23.0 LANGUAGE_NAME := tree-sitter-python diff --git a/bindings/go/binding_test.go b/bindings/go/binding_test.go index dd111d4..f1b71a5 100644 --- a/bindings/go/binding_test.go +++ b/bindings/go/binding_test.go @@ -3,7 +3,7 @@ package tree_sitter_python_test import ( "testing" - tree_sitter "github.com/smacker/go-tree-sitter" + tree_sitter "github.com/tree-sitter/go-tree-sitter" tree_sitter_python "github.com/tree-sitter/tree-sitter-python/bindings/go" ) diff --git a/bindings/node/binding_test.js b/bindings/node/binding_test.js new file mode 100644 index 0000000..afede30 --- /dev/null +++ b/bindings/node/binding_test.js @@ -0,0 +1,9 @@ +/// + +const assert = require("node:assert"); +const { test } = require("node:test"); + +test("can load grammar", () => { + const parser = new (require("tree-sitter"))(); + assert.doesNotThrow(() => parser.setLanguage(require("."))); +}); diff --git a/bindings/python/tests/test_binding.py b/bindings/python/tests/test_binding.py new file mode 100644 index 0000000..c059cc6 --- /dev/null +++ b/bindings/python/tests/test_binding.py @@ -0,0 +1,11 @@ +from unittest import TestCase + +import tree_sitter, tree_sitter_python + + +class TestLanguage(TestCase): + def test_can_load_grammar(self): + try: + tree_sitter.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 b3fd7bb..84d8016 100644 --- a/bindings/python/tree_sitter_python/binding.c +++ b/bindings/python/tree_sitter_python/binding.c @@ -2,10 +2,10 @@ typedef struct TSLanguage TSLanguage; -extern const TSLanguage *tree_sitter_python(void); +TSLanguage *tree_sitter_python(void); -static PyObject* _binding_language(PyObject *self, PyObject *args) { - return PyLong_FromVoidPtr((void *)tree_sitter_python()); +static PyObject* _binding_language(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(args)) { + return PyCapsule_New(tree_sitter_python(), "tree_sitter.Language", NULL); } static PyMethodDef methods[] = { diff --git a/bindings/rust/README.md b/bindings/rust/README.md deleted file mode 100644 index 27acc1f..0000000 --- a/bindings/rust/README.md +++ /dev/null @@ -1,35 +0,0 @@ -# tree-sitter-python - -This crate provides a Python grammar for the [tree-sitter][] parsing library. -To use this crate, add it to the `[dependencies]` section of your `Cargo.toml` -file. (Note that you will probably also need to depend on the -[`tree-sitter`][tree-sitter crate] crate to use the parsed result in any useful -way.) - -```toml -[dependencies] -tree-sitter = "0.20.10" -tree-sitter-python = "0.20.4" -``` - -Typically, you will use the [language][language func] function to add this -grammar to a tree-sitter [Parser][], and then use the parser to parse some code: - -```rust -let code = r#" - def double(x): - return x * 2 -"#; -let mut parser = Parser::new(); -parser.set_language(tree_sitter_python::language()).expect("Error loading Python grammar"); -let parsed = parser.parse(code, None); -``` - -If you have any questions, please reach out to us in the [tree-sitter -discussions] page. - -[language func]: https://docs.rs/tree-sitter-python/*/tree_sitter_python/fn.language.html -[Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html -[tree-sitter]: https://tree-sitter.github.io/ -[tree-sitter crate]: https://crates.io/crates/tree-sitter -[tree-sitter discussions]: https://github.com/tree-sitter/tree-sitter/discussions diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index 0f43c70..bdcdab5 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -9,7 +9,10 @@ //! return x * 2 //! "#; //! let mut parser = tree_sitter::Parser::new(); -//! parser.set_language(&tree_sitter_python::language()).expect("Error loading Python grammar"); +//! let language = tree_sitter_python::LANGUAGE; +//! parser +//! .set_language(&language.into()) +//! .expect("Error loading Python parser"); //! let tree = parser.parse(code, None).unwrap(); //! assert!(!tree.root_node().has_error()); //! ``` @@ -19,18 +22,14 @@ //! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html //! [tree-sitter]: https://tree-sitter.github.io/ -use tree_sitter::Language; +use tree_sitter_language::LanguageFn; extern "C" { - fn tree_sitter_python() -> Language; + fn tree_sitter_python() -> *const (); } -/// Get the tree-sitter [Language][] for this grammar. -/// -/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -pub fn language() -> Language { - unsafe { tree_sitter_python() } -} +/// 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. /// @@ -46,7 +45,7 @@ mod tests { fn test_can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser - .set_language(&super::language()) - .expect("Error loading Python grammar"); + .set_language(&super::LANGUAGE.into()) + .expect("Error loading Python parser"); } } diff --git a/bindings/swift/TreeSitterPythonTests/TreeSitterPythonTests.swift b/bindings/swift/TreeSitterPythonTests/TreeSitterPythonTests.swift new file mode 100644 index 0000000..d2be8dc --- /dev/null +++ b/bindings/swift/TreeSitterPythonTests/TreeSitterPythonTests.swift @@ -0,0 +1,12 @@ +import XCTest +import SwiftTreeSitter +import TreeSitterPython + +final class TreeSitterPythonTests: XCTestCase { + func testCanLoadGrammar() throws { + let parser = Parser() + let language = Language(language: tree_sitter_python()) + XCTAssertNoThrow(try parser.setLanguage(language), + "Error loading Python grammar") + } +} diff --git a/go.mod b/go.mod index a52ac84..d391948 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,9 @@ module github.com/tree-sitter/tree-sitter-python -go 1.22 +go 1.23 -require github.com/smacker/go-tree-sitter v0.0.0-20230720070738-0d0a9f78d8f8 +toolchain go1.23.0 + +require github.com/tree-sitter/go-tree-sitter v0.23.1 + +require github.com/mattn/go-pointer v0.0.1 // indirect diff --git a/package.json b/package.json index 0332ada..9140ef0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-python", - "version": "0.21.0", + "version": "0.23.0", "description": "Python grammar for tree-sitter", "repository": "github:tree-sitter/tree-sitter-python", "license": "MIT", @@ -43,12 +43,13 @@ } }, "scripts": { - "build": "tree-sitter generate --no-bindings", "lint": "eslint grammar.js", "parse": "tree-sitter parse", - "test": "tree-sitter test", "install": "node-gyp-build", - "prebuildify": "prebuildify --napi --strip" + "prebuildify": "prebuildify --napi --strip", + "prestart": "tree-sitter build --wasm", + "start": "tree-sitter playground", + "test": "node --test bindings/node/*_test.js" }, "tree-sitter": [ { diff --git a/pyproject.toml b/pyproject.toml index c143b03..1d49203 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,23 +5,26 @@ build-backend = "setuptools.build_meta" [project] name = "tree-sitter-python" description = "Python grammar for tree-sitter" -version = "0.21.0" -keywords = ["parsing", "incremental", "python"] +version = "0.23.0" +keywords = ["incremental", "parsing", "tree-sitter", "python"] classifiers = [ - "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Topic :: Software Development :: Compilers", "Topic :: Text Processing :: Linguistic", + "Typing :: Typed", ] authors = [ - {name = "Max Brunsfeld"}, - {name = "Amaan Qureshi"} + { name = "Max Brunsfeld", email = "maxbrunsfeld@gmail.com" }, + { name = "Amaan Qureshi", email = "amaanq12@gmail.com" }, ] requires-python = ">=3.8" license.text = "MIT" readme = "README.md" +[project.urls] +Homepage = "https://github.com/tree-sitter/tree-sitter-python" + [project.optional-dependencies] core = ["tree-sitter~=0.21"] diff --git a/src/parser.c b/src/parser.c index 1f98bb3..3c7692a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -2776,78 +2776,78 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8] = 8, [9] = 9, [10] = 10, - [11] = 11, + [11] = 10, [12] = 12, [13] = 13, [14] = 14, [15] = 15, - [16] = 2, - [17] = 17, - [18] = 18, + [16] = 16, + [17] = 8, + [18] = 13, [19] = 19, [20] = 20, [21] = 21, [22] = 22, [23] = 23, - [24] = 24, - [25] = 25, + [24] = 7, + [25] = 3, [26] = 26, - [27] = 27, + [27] = 22, [28] = 28, [29] = 29, [30] = 30, - [31] = 31, - [32] = 32, + [31] = 21, + [32] = 23, [33] = 33, - [34] = 30, - [35] = 3, - [36] = 4, - [37] = 5, - [38] = 6, - [39] = 7, - [40] = 8, - [41] = 9, - [42] = 10, - [43] = 11, - [44] = 12, - [45] = 13, - [46] = 14, - [47] = 15, - [48] = 48, - [49] = 17, - [50] = 18, - [51] = 19, + [34] = 9, + [35] = 35, + [36] = 36, + [37] = 16, + [38] = 28, + [39] = 39, + [40] = 39, + [41] = 41, + [42] = 42, + [43] = 33, + [44] = 44, + [45] = 44, + [46] = 15, + [47] = 36, + [48] = 29, + [49] = 42, + [50] = 12, + [51] = 2, [52] = 20, - [53] = 21, - [54] = 22, - [55] = 24, - [56] = 25, - [57] = 28, - [58] = 29, + [53] = 53, + [54] = 54, + [55] = 41, + [56] = 14, + [57] = 19, + [58] = 4, [59] = 59, - [60] = 48, - [61] = 59, + [60] = 26, + [61] = 6, [62] = 62, - [63] = 62, + [63] = 63, [64] = 64, - [65] = 65, - [66] = 62, - [67] = 65, - [68] = 62, - [69] = 62, - [70] = 62, - [71] = 62, - [72] = 62, + [65] = 63, + [66] = 63, + [67] = 64, + [68] = 63, + [69] = 63, + [70] = 63, + [71] = 63, + [72] = 63, [73] = 73, [74] = 73, [75] = 75, [76] = 76, [77] = 75, - [78] = 76, + [78] = 78, [79] = 79, - [80] = 80, + [80] = 76, [81] = 79, - [82] = 80, + [82] = 78, [83] = 83, [84] = 83, [85] = 85, @@ -2855,69 +2855,69 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [87] = 87, [88] = 88, [89] = 89, - [90] = 90, + [90] = 87, [91] = 91, [92] = 92, [93] = 93, - [94] = 94, + [94] = 89, [95] = 95, [96] = 96, [97] = 97, - [98] = 88, - [99] = 93, + [98] = 98, + [99] = 99, [100] = 100, [101] = 101, - [102] = 96, + [102] = 93, [103] = 103, [104] = 104, [105] = 105, - [106] = 106, - [107] = 101, + [106] = 88, + [107] = 107, [108] = 108, [109] = 109, - [110] = 97, + [110] = 100, [111] = 111, - [112] = 90, - [113] = 100, - [114] = 109, - [115] = 91, + [112] = 112, + [113] = 113, + [114] = 114, + [115] = 112, [116] = 116, - [117] = 92, - [118] = 118, - [119] = 119, - [120] = 106, - [121] = 121, - [122] = 122, - [123] = 123, - [124] = 122, - [125] = 94, - [126] = 118, - [127] = 104, - [128] = 128, - [129] = 105, - [130] = 95, - [131] = 123, - [132] = 103, - [133] = 121, - [134] = 134, - [135] = 108, - [136] = 89, + [117] = 117, + [118] = 103, + [119] = 101, + [120] = 120, + [121] = 117, + [122] = 107, + [123] = 97, + [124] = 105, + [125] = 125, + [126] = 114, + [127] = 109, + [128] = 108, + [129] = 129, + [130] = 96, + [131] = 113, + [132] = 99, + [133] = 111, + [134] = 91, + [135] = 95, + [136] = 104, [137] = 137, - [138] = 137, - [139] = 137, - [140] = 140, - [141] = 140, + [138] = 138, + [139] = 138, + [140] = 138, + [141] = 138, [142] = 137, [143] = 137, - [144] = 140, - [145] = 137, - [146] = 140, - [147] = 140, + [144] = 138, + [145] = 138, + [146] = 137, + [147] = 138, [148] = 137, - [149] = 140, - [150] = 140, + [149] = 137, + [150] = 137, [151] = 137, - [152] = 140, + [152] = 138, [153] = 153, [154] = 154, [155] = 154, @@ -2928,323 +2928,323 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [160] = 154, [161] = 156, [162] = 156, - [163] = 156, - [164] = 157, - [165] = 158, - [166] = 157, - [167] = 157, - [168] = 168, - [169] = 169, - [170] = 157, - [171] = 158, + [163] = 157, + [164] = 164, + [165] = 157, + [166] = 166, + [167] = 158, + [168] = 157, + [169] = 156, + [170] = 154, + [171] = 156, [172] = 156, - [173] = 157, - [174] = 158, - [175] = 154, - [176] = 176, - [177] = 156, - [178] = 154, - [179] = 168, - [180] = 168, - [181] = 169, - [182] = 158, - [183] = 157, + [173] = 158, + [174] = 164, + [175] = 166, + [176] = 157, + [177] = 158, + [178] = 178, + [179] = 157, + [180] = 158, + [181] = 157, + [182] = 164, + [183] = 154, [184] = 158, [185] = 158, [186] = 158, [187] = 156, - [188] = 176, + [188] = 178, [189] = 189, [190] = 190, - [191] = 189, - [192] = 192, - [193] = 190, - [194] = 194, + [191] = 190, + [192] = 189, + [193] = 193, + [194] = 193, [195] = 189, - [196] = 192, + [196] = 190, [197] = 190, [198] = 198, - [199] = 199, - [200] = 189, - [201] = 189, - [202] = 192, - [203] = 189, - [204] = 192, + [199] = 189, + [200] = 200, + [201] = 201, + [202] = 193, + [203] = 190, + [204] = 189, [205] = 189, - [206] = 192, - [207] = 190, - [208] = 190, - [209] = 209, - [210] = 209, - [211] = 189, - [212] = 192, - [213] = 190, - [214] = 190, - [215] = 192, - [216] = 192, - [217] = 189, - [218] = 192, - [219] = 192, - [220] = 192, - [221] = 190, + [206] = 189, + [207] = 193, + [208] = 189, + [209] = 189, + [210] = 193, + [211] = 190, + [212] = 198, + [213] = 189, + [214] = 193, + [215] = 190, + [216] = 190, + [217] = 193, + [218] = 189, + [219] = 193, + [220] = 193, + [221] = 221, [222] = 222, [223] = 223, [224] = 224, - [225] = 225, - [226] = 225, + [225] = 224, + [226] = 226, [227] = 224, - [228] = 225, - [229] = 225, - [230] = 230, - [231] = 224, - [232] = 224, - [233] = 230, + [228] = 228, + [229] = 226, + [230] = 224, + [231] = 226, + [232] = 226, + [233] = 228, [234] = 234, [235] = 235, [236] = 236, - [237] = 237, - [238] = 238, + [237] = 234, + [238] = 234, [239] = 239, [240] = 240, - [241] = 241, + [241] = 240, [242] = 242, - [243] = 243, - [244] = 240, - [245] = 243, + [243] = 235, + [244] = 235, + [245] = 235, [246] = 246, [247] = 247, - [248] = 248, - [249] = 240, + [248] = 223, + [249] = 235, [250] = 250, - [251] = 248, - [252] = 252, - [253] = 222, - [254] = 223, - [255] = 250, - [256] = 248, + [251] = 251, + [252] = 235, + [253] = 240, + [254] = 235, + [255] = 255, + [256] = 236, [257] = 240, - [258] = 243, - [259] = 259, - [260] = 248, - [261] = 248, - [262] = 248, - [263] = 248, - [264] = 239, - [265] = 239, - [266] = 239, - [267] = 248, - [268] = 236, - [269] = 237, - [270] = 242, - [271] = 243, + [258] = 258, + [259] = 242, + [260] = 236, + [261] = 250, + [262] = 262, + [263] = 263, + [264] = 246, + [265] = 222, + [266] = 236, + [267] = 267, + [268] = 239, + [269] = 269, + [270] = 235, + [271] = 234, [272] = 272, [273] = 273, - [274] = 274, + [274] = 272, [275] = 275, [276] = 276, - [277] = 273, - [278] = 278, - [279] = 275, - [280] = 280, - [281] = 274, - [282] = 272, - [283] = 272, - [284] = 278, - [285] = 276, - [286] = 273, - [287] = 275, - [288] = 280, - [289] = 274, - [290] = 278, - [291] = 272, - [292] = 278, + [277] = 277, + [278] = 276, + [279] = 279, + [280] = 275, + [281] = 281, + [282] = 273, + [283] = 276, + [284] = 277, + [285] = 279, + [286] = 276, + [287] = 273, + [288] = 272, + [289] = 277, + [290] = 272, + [291] = 273, + [292] = 279, [293] = 276, - [294] = 273, - [295] = 275, - [296] = 280, - [297] = 272, - [298] = 278, - [299] = 276, - [300] = 273, - [301] = 275, - [302] = 280, - [303] = 274, - [304] = 272, - [305] = 278, - [306] = 276, - [307] = 273, - [308] = 280, - [309] = 275, - [310] = 280, - [311] = 272, - [312] = 278, + [294] = 279, + [295] = 277, + [296] = 273, + [297] = 273, + [298] = 272, + [299] = 272, + [300] = 281, + [301] = 273, + [302] = 277, + [303] = 276, + [304] = 276, + [305] = 275, + [306] = 277, + [307] = 281, + [308] = 275, + [309] = 272, + [310] = 281, + [311] = 273, + [312] = 275, [313] = 276, - [314] = 273, - [315] = 275, - [316] = 280, - [317] = 272, - [318] = 278, - [319] = 276, - [320] = 273, - [321] = 275, - [322] = 280, - [323] = 274, - [324] = 276, - [325] = 274, + [314] = 279, + [315] = 277, + [316] = 275, + [317] = 281, + [318] = 277, + [319] = 275, + [320] = 279, + [321] = 281, + [322] = 275, + [323] = 281, + [324] = 272, + [325] = 281, [326] = 326, - [327] = 327, + [327] = 326, [328] = 328, [329] = 329, - [330] = 327, + [330] = 178, [331] = 331, [332] = 332, - [333] = 332, - [334] = 334, - [335] = 326, - [336] = 329, - [337] = 329, - [338] = 332, - [339] = 326, - [340] = 334, - [341] = 341, - [342] = 342, - [343] = 327, - [344] = 176, - [345] = 334, - [346] = 341, - [347] = 341, + [333] = 331, + [334] = 329, + [335] = 335, + [336] = 331, + [337] = 332, + [338] = 335, + [339] = 339, + [340] = 326, + [341] = 339, + [342] = 335, + [343] = 332, + [344] = 344, + [345] = 345, + [346] = 339, + [347] = 329, [348] = 348, - [349] = 349, + [349] = 255, [350] = 350, - [351] = 350, - [352] = 352, - [353] = 352, - [354] = 252, - [355] = 352, + [351] = 351, + [352] = 350, + [353] = 351, + [354] = 350, + [355] = 351, [356] = 348, - [357] = 350, - [358] = 352, - [359] = 352, - [360] = 252, + [357] = 255, + [358] = 350, + [359] = 351, + [360] = 350, [361] = 350, - [362] = 352, - [363] = 252, - [364] = 350, - [365] = 350, - [366] = 352, - [367] = 350, + [362] = 362, + [363] = 350, + [364] = 348, + [365] = 351, + [366] = 351, + [367] = 351, [368] = 350, - [369] = 348, - [370] = 352, + [369] = 255, + [370] = 351, [371] = 371, - [372] = 372, + [372] = 371, [373] = 373, - [374] = 373, - [375] = 373, - [376] = 376, + [374] = 374, + [375] = 374, + [376] = 373, [377] = 371, - [378] = 376, - [379] = 371, - [380] = 328, + [378] = 328, + [379] = 374, + [380] = 373, [381] = 381, - [382] = 376, - [383] = 342, - [384] = 373, - [385] = 376, - [386] = 371, - [387] = 371, - [388] = 371, - [389] = 156, - [390] = 373, - [391] = 373, - [392] = 373, - [393] = 376, + [382] = 382, + [383] = 344, + [384] = 374, + [385] = 156, + [386] = 374, + [387] = 373, + [388] = 374, + [389] = 374, + [390] = 371, + [391] = 371, + [392] = 392, + [393] = 374, [394] = 371, [395] = 373, - [396] = 376, - [397] = 371, - [398] = 373, - [399] = 376, - [400] = 371, + [396] = 371, + [397] = 374, + [398] = 398, + [399] = 374, + [400] = 373, [401] = 401, - [402] = 376, - [403] = 403, - [404] = 404, - [405] = 373, - [406] = 376, - [407] = 371, - [408] = 376, + [402] = 373, + [403] = 371, + [404] = 371, + [405] = 371, + [406] = 373, + [407] = 373, + [408] = 373, [409] = 409, - [410] = 410, + [410] = 409, [411] = 411, [412] = 412, - [413] = 328, - [414] = 414, + [413] = 413, + [414] = 409, [415] = 415, [416] = 416, - [417] = 156, + [417] = 417, [418] = 418, - [419] = 419, - [420] = 418, - [421] = 421, - [422] = 176, - [423] = 176, + [419] = 416, + [420] = 344, + [421] = 409, + [422] = 422, + [423] = 423, [424] = 424, - [425] = 425, - [426] = 421, - [427] = 328, - [428] = 428, - [429] = 409, - [430] = 411, - [431] = 431, - [432] = 342, - [433] = 433, - [434] = 434, - [435] = 433, - [436] = 436, - [437] = 411, + [425] = 401, + [426] = 426, + [427] = 423, + [428] = 156, + [429] = 178, + [430] = 418, + [431] = 178, + [432] = 415, + [433] = 422, + [434] = 409, + [435] = 435, + [436] = 409, + [437] = 437, [438] = 438, - [439] = 404, - [440] = 409, + [439] = 409, + [440] = 418, [441] = 441, - [442] = 342, - [443] = 409, - [444] = 444, - [445] = 409, - [446] = 176, - [447] = 409, + [442] = 442, + [443] = 412, + [444] = 328, + [445] = 412, + [446] = 328, + [447] = 447, [448] = 409, - [449] = 409, + [449] = 449, [450] = 409, - [451] = 409, - [452] = 433, - [453] = 441, - [454] = 431, - [455] = 416, - [456] = 441, - [457] = 418, - [458] = 421, - [459] = 459, - [460] = 460, + [451] = 344, + [452] = 409, + [453] = 415, + [454] = 454, + [455] = 411, + [456] = 456, + [457] = 457, + [458] = 423, + [459] = 422, + [460] = 178, [461] = 461, [462] = 462, [463] = 463, - [464] = 464, - [465] = 342, - [466] = 328, - [467] = 463, + [464] = 461, + [465] = 463, + [466] = 466, + [467] = 467, [468] = 468, [469] = 469, - [470] = 470, - [471] = 471, - [472] = 464, - [473] = 470, - [474] = 462, - [475] = 475, - [476] = 461, + [470] = 466, + [471] = 462, + [472] = 467, + [473] = 473, + [474] = 474, + [475] = 474, + [476] = 344, [477] = 468, - [478] = 475, - [479] = 469, + [478] = 473, + [479] = 328, [480] = 480, [481] = 481, [482] = 482, @@ -3254,159 +3254,159 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [486] = 486, [487] = 487, [488] = 488, - [489] = 480, - [490] = 488, - [491] = 481, - [492] = 482, - [493] = 483, - [494] = 484, - [495] = 487, - [496] = 480, - [497] = 497, - [498] = 488, - [499] = 481, + [489] = 486, + [490] = 480, + [491] = 491, + [492] = 492, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 484, + [498] = 483, + [499] = 483, [500] = 482, - [501] = 483, - [502] = 484, - [503] = 487, - [504] = 480, - [505] = 488, + [501] = 482, + [502] = 493, + [503] = 494, + [504] = 487, + [505] = 505, [506] = 506, - [507] = 488, - [508] = 481, - [509] = 482, + [507] = 506, + [508] = 486, + [509] = 487, [510] = 483, - [511] = 484, - [512] = 487, - [513] = 480, + [511] = 482, + [512] = 485, + [513] = 487, [514] = 514, - [515] = 488, - [516] = 481, - [517] = 482, - [518] = 483, - [519] = 484, - [520] = 487, - [521] = 480, - [522] = 481, - [523] = 482, - [524] = 524, + [515] = 506, + [516] = 482, + [517] = 493, + [518] = 506, + [519] = 483, + [520] = 494, + [521] = 486, + [522] = 506, + [523] = 487, + [524] = 514, [525] = 525, [526] = 526, [527] = 527, - [528] = 525, - [529] = 529, - [530] = 530, - [531] = 531, - [532] = 532, - [533] = 483, - [534] = 534, + [528] = 494, + [529] = 494, + [530] = 485, + [531] = 484, + [532] = 486, + [533] = 495, + [534] = 485, [535] = 535, - [536] = 536, - [537] = 537, - [538] = 484, - [539] = 539, - [540] = 529, - [541] = 497, - [542] = 530, - [543] = 487, - [544] = 514, - [545] = 527, - [546] = 546, - [547] = 497, - [548] = 532, - [549] = 488, - [550] = 525, - [551] = 526, - [552] = 546, - [553] = 532, - [554] = 554, - [555] = 487, + [536] = 493, + [537] = 493, + [538] = 506, + [539] = 487, + [540] = 482, + [541] = 485, + [542] = 483, + [543] = 486, + [544] = 494, + [545] = 506, + [546] = 493, + [547] = 547, + [548] = 487, + [549] = 483, + [550] = 547, + [551] = 482, + [552] = 482, + [553] = 483, + [554] = 486, + [555] = 485, [556] = 556, - [557] = 557, - [558] = 546, - [559] = 497, - [560] = 525, - [561] = 526, - [562] = 562, + [557] = 494, + [558] = 506, + [559] = 487, + [560] = 493, + [561] = 495, + [562] = 480, [563] = 563, - [564] = 481, - [565] = 532, - [566] = 566, - [567] = 567, + [564] = 480, + [565] = 565, + [566] = 485, + [567] = 493, [568] = 568, - [569] = 482, - [570] = 570, - [571] = 525, - [572] = 526, - [573] = 483, - [574] = 484, - [575] = 488, - [576] = 546, - [577] = 481, - [578] = 482, - [579] = 483, - [580] = 484, - [581] = 525, - [582] = 526, - [583] = 497, - [584] = 480, - [585] = 585, - [586] = 586, - [587] = 487, - [588] = 525, - [589] = 526, - [590] = 562, - [591] = 563, + [569] = 569, + [570] = 568, + [571] = 571, + [572] = 568, + [573] = 485, + [574] = 568, + [575] = 480, + [576] = 494, + [577] = 568, + [578] = 481, + [579] = 579, + [580] = 580, + [581] = 580, + [582] = 582, + [583] = 525, + [584] = 584, + [585] = 571, + [586] = 556, + [587] = 565, + [588] = 480, + [589] = 495, + [590] = 563, + [591] = 526, [592] = 480, - [593] = 525, - [594] = 485, - [595] = 486, - [596] = 570, - [597] = 570, - [598] = 570, - [599] = 570, - [600] = 570, - [601] = 570, - [602] = 570, - [603] = 568, - [604] = 535, - [605] = 557, - [606] = 606, - [607] = 536, - [608] = 606, + [593] = 593, + [594] = 514, + [595] = 568, + [596] = 484, + [597] = 514, + [598] = 593, + [599] = 484, + [600] = 492, + [601] = 601, + [602] = 602, + [603] = 584, + [604] = 604, + [605] = 486, + [606] = 480, + [607] = 607, + [608] = 601, [609] = 609, [610] = 610, - [611] = 611, + [611] = 610, [612] = 612, - [613] = 612, - [614] = 610, + [613] = 613, + [614] = 614, [615] = 615, [616] = 616, [617] = 617, - [618] = 615, - [619] = 616, - [620] = 611, - [621] = 617, - [622] = 622, + [618] = 617, + [619] = 615, + [620] = 616, + [621] = 612, + [622] = 613, [623] = 623, - [624] = 622, + [624] = 624, [625] = 623, - [626] = 626, + [626] = 614, [627] = 627, [628] = 628, [629] = 629, [630] = 630, [631] = 631, - [632] = 630, - [633] = 631, - [634] = 634, - [635] = 634, - [636] = 636, - [637] = 637, - [638] = 638, + [632] = 632, + [633] = 633, + [634] = 630, + [635] = 635, + [636] = 632, + [637] = 628, + [638] = 633, [639] = 639, - [640] = 629, - [641] = 628, + [640] = 640, + [641] = 635, [642] = 642, [643] = 643, [644] = 644, @@ -3416,55 +3416,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [648] = 648, [649] = 649, [650] = 648, - [651] = 651, + [651] = 223, [652] = 652, [653] = 653, [654] = 654, [655] = 655, - [656] = 223, - [657] = 649, - [658] = 652, - [659] = 653, - [660] = 655, - [661] = 652, - [662] = 653, - [663] = 654, - [664] = 654, - [665] = 665, + [656] = 648, + [657] = 657, + [658] = 658, + [659] = 658, + [660] = 660, + [661] = 222, + [662] = 658, + [663] = 660, + [664] = 652, + [665] = 657, [666] = 666, - [667] = 649, - [668] = 668, - [669] = 669, - [670] = 670, - [671] = 655, - [672] = 672, - [673] = 655, - [674] = 651, - [675] = 675, - [676] = 675, - [677] = 677, - [678] = 652, - [679] = 653, - [680] = 654, - [681] = 665, - [682] = 666, - [683] = 649, - [684] = 649, - [685] = 668, - [686] = 670, - [687] = 672, - [688] = 677, - [689] = 649, - [690] = 222, - [691] = 655, - [692] = 653, - [693] = 652, - [694] = 653, - [695] = 654, - [696] = 652, - [697] = 654, - [698] = 669, - [699] = 655, + [667] = 667, + [668] = 660, + [669] = 648, + [670] = 660, + [671] = 660, + [672] = 657, + [673] = 649, + [674] = 674, + [675] = 652, + [676] = 676, + [677] = 652, + [678] = 666, + [679] = 657, + [680] = 652, + [681] = 648, + [682] = 667, + [683] = 652, + [684] = 658, + [685] = 685, + [686] = 685, + [687] = 687, + [688] = 657, + [689] = 687, + [690] = 674, + [691] = 653, + [692] = 676, + [693] = 658, + [694] = 654, + [695] = 660, + [696] = 657, + [697] = 655, + [698] = 648, + [699] = 658, [700] = 700, [701] = 701, [702] = 702, @@ -3475,24 +3475,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [707] = 707, [708] = 708, [709] = 709, - [710] = 709, - [711] = 708, - [712] = 712, - [713] = 700, - [714] = 707, - [715] = 712, - [716] = 701, - [717] = 706, - [718] = 704, - [719] = 703, - [720] = 705, - [721] = 702, + [710] = 710, + [711] = 702, + [712] = 709, + [713] = 708, + [714] = 706, + [715] = 704, + [716] = 700, + [717] = 703, + [718] = 705, + [719] = 701, + [720] = 707, + [721] = 710, [722] = 722, - [723] = 723, - [724] = 722, - [725] = 725, - [726] = 725, - [727] = 723, + [723] = 722, + [724] = 724, + [725] = 724, + [726] = 726, + [727] = 726, [728] = 728, [729] = 729, [730] = 730, @@ -3513,110 +3513,110 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [745] = 745, [746] = 746, [747] = 747, - [748] = 748, - [749] = 749, - [750] = 750, + [748] = 747, + [749] = 746, + [750] = 222, [751] = 751, [752] = 752, [753] = 753, - [754] = 754, - [755] = 755, + [754] = 745, + [755] = 729, [756] = 756, [757] = 757, - [758] = 758, + [758] = 744, [759] = 759, [760] = 760, [761] = 761, [762] = 762, [763] = 763, [764] = 764, - [765] = 765, + [765] = 739, [766] = 766, [767] = 767, [768] = 768, - [769] = 763, - [770] = 764, + [769] = 769, + [770] = 770, [771] = 771, - [772] = 728, - [773] = 761, - [774] = 774, + [772] = 772, + [773] = 773, + [774] = 756, [775] = 775, - [776] = 776, + [776] = 760, [777] = 777, - [778] = 731, - [779] = 779, + [778] = 778, + [779] = 742, [780] = 780, - [781] = 781, - [782] = 736, - [783] = 739, - [784] = 741, - [785] = 785, - [786] = 786, - [787] = 765, - [788] = 766, - [789] = 752, - [790] = 762, + [781] = 741, + [782] = 770, + [783] = 783, + [784] = 762, + [785] = 761, + [786] = 223, + [787] = 787, + [788] = 757, + [789] = 764, + [790] = 753, [791] = 791, - [792] = 754, + [792] = 751, [793] = 793, - [794] = 742, - [795] = 795, - [796] = 780, - [797] = 797, - [798] = 223, - [799] = 767, - [800] = 775, - [801] = 774, - [802] = 776, - [803] = 785, - [804] = 804, + [794] = 794, + [795] = 777, + [796] = 773, + [797] = 772, + [798] = 771, + [799] = 799, + [800] = 800, + [801] = 801, + [802] = 775, + [803] = 783, + [804] = 767, [805] = 805, - [806] = 791, - [807] = 793, - [808] = 786, - [809] = 809, - [810] = 810, - [811] = 804, - [812] = 771, + [806] = 793, + [807] = 799, + [808] = 743, + [809] = 800, + [810] = 805, + [811] = 801, + [812] = 812, [813] = 813, - [814] = 730, - [815] = 757, - [816] = 805, - [817] = 795, - [818] = 729, - [819] = 737, - [820] = 755, - [821] = 779, - [822] = 809, - [823] = 810, - [824] = 797, - [825] = 732, - [826] = 733, - [827] = 734, + [814] = 733, + [815] = 815, + [816] = 816, + [817] = 740, + [818] = 738, + [819] = 763, + [820] = 812, + [821] = 734, + [822] = 731, + [823] = 813, + [824] = 752, + [825] = 825, + [826] = 737, + [827] = 815, [828] = 735, - [829] = 738, - [830] = 740, - [831] = 744, - [832] = 745, - [833] = 746, - [834] = 747, - [835] = 748, - [836] = 749, - [837] = 750, - [838] = 751, - [839] = 753, - [840] = 813, - [841] = 756, - [842] = 777, - [843] = 758, - [844] = 781, - [845] = 768, - [846] = 759, - [847] = 760, - [848] = 781, - [849] = 768, - [850] = 743, - [851] = 222, + [829] = 736, + [830] = 730, + [831] = 831, + [832] = 832, + [833] = 831, + [834] = 832, + [835] = 816, + [836] = 825, + [837] = 759, + [838] = 732, + [839] = 768, + [840] = 778, + [841] = 801, + [842] = 780, + [843] = 728, + [844] = 844, + [845] = 775, + [846] = 844, + [847] = 766, + [848] = 787, + [849] = 791, + [850] = 794, + [851] = 769, [852] = 852, [853] = 852, [854] = 852, @@ -3626,630 +3626,630 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [858] = 858, [859] = 858, [860] = 860, - [861] = 860, - [862] = 860, - [863] = 860, - [864] = 860, - [865] = 865, - [866] = 860, - [867] = 860, - [868] = 860, + [861] = 861, + [862] = 861, + [863] = 861, + [864] = 861, + [865] = 861, + [866] = 861, + [867] = 861, + [868] = 861, [869] = 869, [870] = 870, [871] = 871, - [872] = 872, - [873] = 869, - [874] = 874, + [872] = 869, + [873] = 870, + [874] = 869, [875] = 875, - [876] = 876, - [877] = 875, - [878] = 876, + [876] = 870, + [877] = 877, + [878] = 878, [879] = 879, [880] = 880, - [881] = 870, - [882] = 871, - [883] = 883, + [881] = 881, + [882] = 882, + [883] = 875, [884] = 871, - [885] = 880, - [886] = 886, - [887] = 887, - [888] = 872, + [885] = 869, + [886] = 869, + [887] = 869, + [888] = 871, [889] = 869, - [890] = 874, - [891] = 876, - [892] = 880, + [890] = 869, + [891] = 891, + [892] = 869, [893] = 875, [894] = 870, - [895] = 879, - [896] = 871, - [897] = 887, - [898] = 869, - [899] = 872, - [900] = 887, - [901] = 869, - [902] = 880, - [903] = 875, - [904] = 874, - [905] = 879, - [906] = 870, - [907] = 874, - [908] = 875, - [909] = 865, - [910] = 879, - [911] = 872, - [912] = 865, - [913] = 886, - [914] = 871, - [915] = 875, - [916] = 883, + [895] = 869, + [896] = 875, + [897] = 870, + [898] = 877, + [899] = 878, + [900] = 879, + [901] = 880, + [902] = 881, + [903] = 882, + [904] = 860, + [905] = 877, + [906] = 878, + [907] = 879, + [908] = 871, + [909] = 882, + [910] = 880, + [911] = 881, + [912] = 882, + [913] = 871, + [914] = 879, + [915] = 881, + [916] = 880, [917] = 879, - [918] = 870, - [919] = 887, - [920] = 875, - [921] = 887, - [922] = 871, - [923] = 872, - [924] = 874, - [925] = 871, - [926] = 875, - [927] = 876, - [928] = 869, - [929] = 875, - [930] = 874, - [931] = 887, - [932] = 872, - [933] = 880, - [934] = 879, - [935] = 876, - [936] = 879, - [937] = 880, - [938] = 887, - [939] = 872, - [940] = 869, - [941] = 869, - [942] = 874, - [943] = 883, - [944] = 876, - [945] = 875, - [946] = 880, - [947] = 870, - [948] = 879, - [949] = 876, + [918] = 878, + [919] = 878, + [920] = 869, + [921] = 877, + [922] = 870, + [923] = 875, + [924] = 875, + [925] = 891, + [926] = 880, + [927] = 871, + [928] = 882, + [929] = 881, + [930] = 878, + [931] = 881, + [932] = 882, + [933] = 879, + [934] = 881, + [935] = 880, + [936] = 880, + [937] = 881, + [938] = 879, + [939] = 878, + [940] = 877, + [941] = 870, + [942] = 882, + [943] = 875, + [944] = 870, + [945] = 880, + [946] = 860, + [947] = 891, + [948] = 877, + [949] = 869, [950] = 871, - [951] = 874, - [952] = 876, - [953] = 870, - [954] = 883, - [955] = 880, - [956] = 870, - [957] = 872, - [958] = 875, - [959] = 875, + [951] = 891, + [952] = 952, + [953] = 869, + [954] = 952, + [955] = 877, + [956] = 878, + [957] = 871, + [958] = 891, + [959] = 879, [960] = 875, - [961] = 887, - [962] = 883, - [963] = 865, - [964] = 964, - [965] = 865, - [966] = 865, - [967] = 865, - [968] = 968, + [961] = 877, + [962] = 882, + [963] = 860, + [964] = 860, + [965] = 860, + [966] = 966, + [967] = 967, + [968] = 860, [969] = 969, - [970] = 865, - [971] = 969, - [972] = 968, - [973] = 973, + [970] = 860, + [971] = 971, + [972] = 972, + [973] = 966, [974] = 974, - [975] = 969, - [976] = 865, + [975] = 975, + [976] = 976, [977] = 977, - [978] = 964, - [979] = 968, - [980] = 980, - [981] = 981, - [982] = 982, - [983] = 983, - [984] = 964, + [978] = 978, + [979] = 860, + [980] = 969, + [981] = 967, + [982] = 967, + [983] = 966, + [984] = 984, [985] = 985, - [986] = 986, + [986] = 969, [987] = 987, - [988] = 981, - [989] = 983, - [990] = 985, - [991] = 865, - [992] = 637, - [993] = 964, - [994] = 985, - [995] = 964, - [996] = 969, - [997] = 997, - [998] = 977, - [999] = 973, - [1000] = 982, - [1001] = 964, - [1002] = 987, - [1003] = 986, - [1004] = 968, - [1005] = 642, - [1006] = 968, - [1007] = 980, - [1008] = 865, + [988] = 966, + [989] = 987, + [990] = 977, + [991] = 860, + [992] = 646, + [993] = 978, + [994] = 644, + [995] = 966, + [996] = 984, + [997] = 974, + [998] = 975, + [999] = 627, + [1000] = 976, + [1001] = 985, + [1002] = 639, + [1003] = 967, + [1004] = 1004, + [1005] = 643, + [1006] = 1006, + [1007] = 969, + [1008] = 1008, [1009] = 1009, - [1010] = 969, - [1011] = 987, - [1012] = 986, - [1013] = 980, - [1014] = 974, - [1015] = 969, - [1016] = 645, - [1017] = 983, - [1018] = 643, - [1019] = 627, - [1020] = 964, - [1021] = 973, - [1022] = 968, - [1023] = 1023, - [1024] = 982, - [1025] = 974, - [1026] = 981, + [1010] = 640, + [1011] = 966, + [1012] = 969, + [1013] = 985, + [1014] = 976, + [1015] = 975, + [1016] = 974, + [1017] = 984, + [1018] = 972, + [1019] = 977, + [1020] = 978, + [1021] = 647, + [1022] = 967, + [1023] = 860, + [1024] = 969, + [1025] = 967, + [1026] = 966, [1027] = 1027, - [1028] = 969, - [1029] = 968, - [1030] = 865, - [1031] = 977, - [1032] = 647, - [1033] = 644, - [1034] = 1034, - [1035] = 1035, - [1036] = 986, - [1037] = 1037, - [1038] = 1038, - [1039] = 1039, - [1040] = 1040, - [1041] = 1041, - [1042] = 1042, - [1043] = 1043, - [1044] = 612, - [1045] = 639, - [1046] = 646, - [1047] = 1034, - [1048] = 1023, - [1049] = 1009, - [1050] = 983, - [1051] = 981, + [1028] = 860, + [1029] = 972, + [1030] = 987, + [1031] = 969, + [1032] = 971, + [1033] = 967, + [1034] = 971, + [1035] = 647, + [1036] = 987, + [1037] = 984, + [1038] = 974, + [1039] = 975, + [1040] = 1009, + [1041] = 1008, + [1042] = 1006, + [1043] = 976, + [1044] = 985, + [1045] = 645, + [1046] = 1046, + [1047] = 1047, + [1048] = 642, + [1049] = 612, + [1050] = 1004, + [1051] = 615, [1052] = 1052, [1053] = 1053, - [1054] = 1054, - [1055] = 627, - [1056] = 973, - [1057] = 974, - [1058] = 977, - [1059] = 980, - [1060] = 985, - [1061] = 982, - [1062] = 987, - [1063] = 986, - [1064] = 644, - [1065] = 637, - [1066] = 645, - [1067] = 647, - [1068] = 642, - [1069] = 643, - [1070] = 626, - [1071] = 638, - [1072] = 1072, + [1054] = 966, + [1055] = 1055, + [1056] = 1056, + [1057] = 640, + [1058] = 643, + [1059] = 1059, + [1060] = 1060, + [1061] = 639, + [1062] = 627, + [1063] = 1063, + [1064] = 1009, + [1065] = 644, + [1066] = 646, + [1067] = 1008, + [1068] = 1006, + [1069] = 967, + [1070] = 1070, + [1071] = 1071, + [1072] = 977, [1073] = 1073, [1074] = 1074, - [1075] = 983, - [1076] = 981, - [1077] = 1077, + [1075] = 978, + [1076] = 1027, + [1077] = 624, [1078] = 1078, - [1079] = 1079, - [1080] = 973, - [1081] = 974, - [1082] = 977, - [1083] = 980, - [1084] = 985, - [1085] = 982, - [1086] = 987, - [1087] = 986, - [1088] = 997, - [1089] = 1089, - [1090] = 1027, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, - [1094] = 997, - [1095] = 983, - [1096] = 981, - [1097] = 1027, - [1098] = 973, - [1099] = 974, - [1100] = 977, - [1101] = 980, - [1102] = 985, - [1103] = 982, - [1104] = 987, - [1105] = 986, - [1106] = 1106, - [1107] = 969, - [1108] = 1034, - [1109] = 1023, - [1110] = 1009, - [1111] = 964, - [1112] = 968, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, - [1116] = 1116, - [1117] = 1117, + [1079] = 985, + [1080] = 976, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, + [1084] = 972, + [1085] = 1085, + [1086] = 975, + [1087] = 974, + [1088] = 978, + [1089] = 984, + [1090] = 977, + [1091] = 972, + [1092] = 984, + [1093] = 974, + [1094] = 975, + [1095] = 971, + [1096] = 971, + [1097] = 1097, + [1098] = 976, + [1099] = 972, + [1100] = 1100, + [1101] = 1101, + [1102] = 977, + [1103] = 978, + [1104] = 1104, + [1105] = 1027, + [1106] = 629, + [1107] = 987, + [1108] = 985, + [1109] = 976, + [1110] = 1100, + [1111] = 971, + [1112] = 975, + [1113] = 974, + [1114] = 984, + [1115] = 972, + [1116] = 977, + [1117] = 978, [1118] = 1118, - [1119] = 1119, - [1120] = 1073, - [1121] = 983, - [1122] = 981, + [1119] = 969, + [1120] = 1120, + [1121] = 987, + [1122] = 1122, [1123] = 1123, - [1124] = 1124, - [1125] = 1125, - [1126] = 1126, - [1127] = 973, - [1128] = 974, - [1129] = 977, - [1130] = 980, - [1131] = 985, - [1132] = 982, - [1133] = 987, - [1134] = 617, - [1135] = 1078, - [1136] = 1126, - [1137] = 626, - [1138] = 1035, - [1139] = 628, - [1140] = 629, - [1141] = 997, - [1142] = 631, - [1143] = 639, - [1144] = 646, - [1145] = 1034, - [1146] = 1023, - [1147] = 1009, - [1148] = 634, - [1149] = 1117, - [1150] = 1118, - [1151] = 1123, - [1152] = 1043, - [1153] = 1027, - [1154] = 1072, - [1155] = 1079, - [1156] = 1092, - [1157] = 1093, - [1158] = 1106, - [1159] = 1113, - [1160] = 1124, - [1161] = 1037, - [1162] = 1038, - [1163] = 1039, - [1164] = 1040, - [1165] = 1041, - [1166] = 1042, - [1167] = 1074, - [1168] = 1077, - [1169] = 1078, - [1170] = 1089, - [1171] = 1091, - [1172] = 1035, - [1173] = 638, - [1174] = 1034, - [1175] = 1023, - [1176] = 1009, - [1177] = 1117, - [1178] = 1118, - [1179] = 1123, - [1180] = 997, - [1181] = 1043, - [1182] = 1072, - [1183] = 1079, - [1184] = 1092, - [1185] = 1093, - [1186] = 1106, - [1187] = 612, - [1188] = 1113, - [1189] = 1124, - [1190] = 1037, - [1191] = 1038, - [1192] = 1039, - [1193] = 1040, - [1194] = 1041, - [1195] = 1042, - [1196] = 1074, - [1197] = 1077, - [1198] = 644, - [1199] = 1125, - [1200] = 645, - [1201] = 1089, - [1202] = 1091, - [1203] = 1119, - [1204] = 627, - [1205] = 1052, - [1206] = 644, - [1207] = 637, - [1208] = 645, - [1209] = 647, - [1210] = 642, - [1211] = 643, - [1212] = 997, - [1213] = 638, - [1214] = 1119, - [1215] = 642, - [1216] = 1073, - [1217] = 983, - [1218] = 981, - [1219] = 1073, - [1220] = 1027, - [1221] = 1125, - [1222] = 1126, - [1223] = 973, - [1224] = 974, - [1225] = 977, - [1226] = 980, - [1227] = 985, - [1228] = 982, - [1229] = 987, - [1230] = 986, - [1231] = 639, - [1232] = 646, - [1233] = 638, - [1234] = 1053, - [1235] = 1054, - [1236] = 643, - [1237] = 626, - [1238] = 997, - [1239] = 612, - [1240] = 617, - [1241] = 1034, - [1242] = 1023, - [1243] = 1009, - [1244] = 1034, - [1245] = 1027, - [1246] = 1052, - [1247] = 1053, - [1248] = 1054, - [1249] = 1023, - [1250] = 1009, - [1251] = 627, - [1252] = 647, + [1124] = 985, + [1125] = 987, + [1126] = 971, + [1127] = 1004, + [1128] = 1128, + [1129] = 1129, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 1133, + [1134] = 1134, + [1135] = 1056, + [1136] = 1071, + [1137] = 1104, + [1138] = 624, + [1139] = 1120, + [1140] = 1004, + [1141] = 1097, + [1142] = 1046, + [1143] = 1123, + [1144] = 615, + [1145] = 612, + [1146] = 640, + [1147] = 1053, + [1148] = 1070, + [1149] = 1134, + [1150] = 1006, + [1151] = 1009, + [1152] = 1008, + [1153] = 1006, + [1154] = 1008, + [1155] = 1009, + [1156] = 647, + [1157] = 646, + [1158] = 644, + [1159] = 1132, + [1160] = 1131, + [1161] = 1073, + [1162] = 1053, + [1163] = 1074, + [1164] = 1082, + [1165] = 1085, + [1166] = 1101, + [1167] = 1081, + [1168] = 1122, + [1169] = 1133, + [1170] = 1083, + [1171] = 1130, + [1172] = 1129, + [1173] = 632, + [1174] = 643, + [1175] = 639, + [1176] = 627, + [1177] = 644, + [1178] = 646, + [1179] = 635, + [1180] = 1047, + [1181] = 1004, + [1182] = 629, + [1183] = 1118, + [1184] = 1133, + [1185] = 627, + [1186] = 639, + [1187] = 643, + [1188] = 1004, + [1189] = 630, + [1190] = 971, + [1191] = 1122, + [1192] = 1081, + [1193] = 642, + [1194] = 624, + [1195] = 987, + [1196] = 1063, + [1197] = 645, + [1198] = 1006, + [1199] = 1055, + [1200] = 1009, + [1201] = 1008, + [1202] = 1004, + [1203] = 1009, + [1204] = 1008, + [1205] = 1006, + [1206] = 629, + [1207] = 1027, + [1208] = 1130, + [1209] = 1071, + [1210] = 1097, + [1211] = 633, + [1212] = 1118, + [1213] = 1055, + [1214] = 1104, + [1215] = 1120, + [1216] = 1056, + [1217] = 1123, + [1218] = 1063, + [1219] = 1047, + [1220] = 1100, + [1221] = 640, + [1222] = 1046, + [1223] = 647, + [1224] = 1070, + [1225] = 1134, + [1226] = 1060, + [1227] = 1132, + [1228] = 1059, + [1229] = 978, + [1230] = 977, + [1231] = 972, + [1232] = 984, + [1233] = 1129, + [1234] = 974, + [1235] = 975, + [1236] = 976, + [1237] = 985, + [1238] = 1027, + [1239] = 1083, + [1240] = 642, + [1241] = 645, + [1242] = 1100, + [1243] = 629, + [1244] = 1101, + [1245] = 1131, + [1246] = 1085, + [1247] = 612, + [1248] = 615, + [1249] = 1082, + [1250] = 1073, + [1251] = 1060, + [1252] = 1074, [1253] = 1027, - [1254] = 617, - [1255] = 637, - [1256] = 1123, - [1257] = 638, - [1258] = 1119, - [1259] = 1126, - [1260] = 1125, - [1261] = 636, - [1262] = 1092, - [1263] = 1093, - [1264] = 1106, - [1265] = 1126, - [1266] = 627, - [1267] = 1113, - [1268] = 1035, - [1269] = 1072, - [1270] = 1035, - [1271] = 638, - [1272] = 639, - [1273] = 646, - [1274] = 1034, - [1275] = 1023, - [1276] = 1009, - [1277] = 1117, - [1278] = 1118, - [1279] = 1125, - [1280] = 1123, - [1281] = 1124, - [1282] = 1043, - [1283] = 1037, - [1284] = 1072, - [1285] = 1079, - [1286] = 1092, - [1287] = 1093, - [1288] = 1106, - [1289] = 1126, - [1290] = 1113, - [1291] = 1038, - [1292] = 1039, - [1293] = 1040, - [1294] = 1041, - [1295] = 1042, - [1296] = 1089, - [1297] = 1074, - [1298] = 1077, - [1299] = 1124, - [1300] = 1037, - [1301] = 1038, - [1302] = 1039, - [1303] = 1040, - [1304] = 1041, - [1305] = 1042, - [1306] = 1092, - [1307] = 1074, - [1308] = 1077, - [1309] = 1078, - [1310] = 1093, - [1311] = 627, - [1312] = 1106, - [1313] = 1089, - [1314] = 1091, - [1315] = 1043, - [1316] = 1113, - [1317] = 1078, - [1318] = 1124, - [1319] = 1037, - [1320] = 1038, - [1321] = 1091, - [1322] = 1039, - [1323] = 1040, - [1324] = 644, - [1325] = 1041, - [1326] = 1042, - [1327] = 1089, - [1328] = 644, - [1329] = 637, - [1330] = 645, - [1331] = 627, - [1332] = 647, - [1333] = 1074, - [1334] = 1077, - [1335] = 642, - [1336] = 643, - [1337] = 1078, - [1338] = 1077, - [1339] = 639, - [1340] = 1091, - [1341] = 644, - [1342] = 1119, - [1343] = 645, - [1344] = 647, - [1345] = 642, - [1346] = 643, - [1347] = 997, - [1348] = 639, - [1349] = 646, - [1350] = 638, - [1351] = 1027, - [1352] = 628, - [1353] = 629, - [1354] = 631, - [1355] = 646, - [1356] = 637, - [1357] = 638, - [1358] = 634, - [1359] = 638, - [1360] = 1119, - [1361] = 1117, - [1362] = 1118, - [1363] = 645, - [1364] = 647, - [1365] = 1035, - [1366] = 1089, - [1367] = 1035, - [1368] = 1368, - [1369] = 628, - [1370] = 629, - [1371] = 1371, - [1372] = 631, - [1373] = 1091, - [1374] = 642, - [1375] = 639, - [1376] = 646, - [1377] = 638, - [1378] = 628, - [1379] = 643, - [1380] = 1079, - [1381] = 629, - [1382] = 634, - [1383] = 1117, - [1384] = 1118, - [1385] = 631, - [1386] = 1123, - [1387] = 1123, - [1388] = 1119, - [1389] = 1043, - [1390] = 1078, - [1391] = 1072, - [1392] = 1079, - [1393] = 636, - [1394] = 1092, - [1395] = 1093, - [1396] = 1106, - [1397] = 1125, - [1398] = 1113, - [1399] = 1114, - [1400] = 1115, - [1401] = 1116, - [1402] = 1126, - [1403] = 1043, - [1404] = 634, - [1405] = 1117, - [1406] = 1118, - [1407] = 1072, - [1408] = 1079, - [1409] = 1074, - [1410] = 1124, - [1411] = 1037, - [1412] = 1038, - [1413] = 1039, - [1414] = 1040, - [1415] = 1041, - [1416] = 1042, - [1417] = 1125, - [1418] = 637, - [1419] = 1053, - [1420] = 636, - [1421] = 1093, - [1422] = 1106, - [1423] = 636, - [1424] = 1113, - [1425] = 627, - [1426] = 644, - [1427] = 637, - [1428] = 645, - [1429] = 647, - [1430] = 1052, - [1431] = 642, - [1432] = 643, - [1433] = 1052, - [1434] = 1053, - [1435] = 1054, - [1436] = 1054, - [1437] = 1119, - [1438] = 1053, - [1439] = 1092, - [1440] = 1117, - [1441] = 1118, - [1442] = 1035, - [1443] = 1123, - [1444] = 1125, - [1445] = 638, - [1446] = 1126, - [1447] = 1043, - [1448] = 1124, - [1449] = 1037, - [1450] = 1038, - [1451] = 1039, - [1452] = 1040, - [1453] = 1041, - [1454] = 1042, - [1455] = 639, - [1456] = 1074, - [1457] = 1077, - [1458] = 1078, - [1459] = 646, - [1460] = 1072, - [1461] = 1079, - [1462] = 1089, - [1463] = 1091, - [1464] = 1052, - [1465] = 1054, - [1466] = 634, - [1467] = 627, - [1468] = 644, - [1469] = 637, - [1470] = 645, - [1471] = 647, - [1472] = 642, - [1473] = 643, - [1474] = 639, - [1475] = 646, - [1476] = 638, - [1477] = 638, - [1478] = 638, - [1479] = 638, - [1480] = 631, - [1481] = 628, + [1254] = 1059, + [1255] = 1027, + [1256] = 1134, + [1257] = 1101, + [1258] = 1063, + [1259] = 631, + [1260] = 1132, + [1261] = 1059, + [1262] = 1047, + [1263] = 1060, + [1264] = 1118, + [1265] = 1129, + [1266] = 1131, + [1267] = 629, + [1268] = 1123, + [1269] = 1118, + [1270] = 1070, + [1271] = 1083, + [1272] = 1120, + [1273] = 1101, + [1274] = 1104, + [1275] = 647, + [1276] = 1073, + [1277] = 1128, + [1278] = 1078, + [1279] = 1052, + [1280] = 1085, + [1281] = 1082, + [1282] = 1074, + [1283] = 629, + [1284] = 1053, + [1285] = 640, + [1286] = 1097, + [1287] = 643, + [1288] = 639, + [1289] = 627, + [1290] = 644, + [1291] = 646, + [1292] = 644, + [1293] = 1055, + [1294] = 1053, + [1295] = 1071, + [1296] = 1097, + [1297] = 646, + [1298] = 633, + [1299] = 642, + [1300] = 1060, + [1301] = 629, + [1302] = 630, + [1303] = 645, + [1304] = 629, + [1305] = 635, + [1306] = 632, + [1307] = 1118, + [1308] = 627, + [1309] = 639, + [1310] = 643, + [1311] = 1104, + [1312] = 1120, + [1313] = 1073, + [1314] = 1123, + [1315] = 1027, + [1316] = 1074, + [1317] = 629, + [1318] = 645, + [1319] = 642, + [1320] = 1131, + [1321] = 1132, + [1322] = 1134, + [1323] = 1070, + [1324] = 1071, + [1325] = 1004, + [1326] = 1326, + [1327] = 1046, + [1328] = 1047, + [1329] = 640, + [1330] = 646, + [1331] = 644, + [1332] = 1047, + [1333] = 1046, + [1334] = 1123, + [1335] = 627, + [1336] = 1120, + [1337] = 1104, + [1338] = 639, + [1339] = 1130, + [1340] = 643, + [1341] = 1059, + [1342] = 1342, + [1343] = 1070, + [1344] = 640, + [1345] = 1134, + [1346] = 1132, + [1347] = 1131, + [1348] = 1082, + [1349] = 1085, + [1350] = 1097, + [1351] = 1071, + [1352] = 1101, + [1353] = 1083, + [1354] = 1073, + [1355] = 1129, + [1356] = 1053, + [1357] = 647, + [1358] = 1060, + [1359] = 1059, + [1360] = 647, + [1361] = 1063, + [1362] = 1056, + [1363] = 1055, + [1364] = 633, + [1365] = 1074, + [1366] = 1082, + [1367] = 1085, + [1368] = 629, + [1369] = 645, + [1370] = 642, + [1371] = 631, + [1372] = 630, + [1373] = 1059, + [1374] = 1060, + [1375] = 1101, + [1376] = 1083, + [1377] = 635, + [1378] = 632, + [1379] = 1129, + [1380] = 1130, + [1381] = 1130, + [1382] = 642, + [1383] = 1056, + [1384] = 645, + [1385] = 1071, + [1386] = 1097, + [1387] = 1006, + [1388] = 1104, + [1389] = 1120, + [1390] = 1123, + [1391] = 1047, + [1392] = 1008, + [1393] = 1046, + [1394] = 1070, + [1395] = 1134, + [1396] = 1009, + [1397] = 1132, + [1398] = 1055, + [1399] = 1056, + [1400] = 1063, + [1401] = 1056, + [1402] = 1055, + [1403] = 633, + [1404] = 1130, + [1405] = 1063, + [1406] = 1131, + [1407] = 1129, + [1408] = 1073, + [1409] = 632, + [1410] = 1083, + [1411] = 635, + [1412] = 1046, + [1413] = 1118, + [1414] = 1053, + [1415] = 630, + [1416] = 1085, + [1417] = 1074, + [1418] = 1082, + [1419] = 1134, + [1420] = 629, + [1421] = 1060, + [1422] = 1081, + [1423] = 1122, + [1424] = 1133, + [1425] = 1081, + [1426] = 631, + [1427] = 1122, + [1428] = 1133, + [1429] = 1074, + [1430] = 1082, + [1431] = 1070, + [1432] = 1085, + [1433] = 1101, + [1434] = 1083, + [1435] = 1053, + [1436] = 631, + [1437] = 1073, + [1438] = 1129, + [1439] = 1131, + [1440] = 1132, + [1441] = 1059, + [1442] = 1123, + [1443] = 639, + [1444] = 1047, + [1445] = 646, + [1446] = 644, + [1447] = 1118, + [1448] = 1130, + [1449] = 627, + [1450] = 1046, + [1451] = 643, + [1452] = 640, + [1453] = 1063, + [1454] = 1056, + [1455] = 647, + [1456] = 642, + [1457] = 1071, + [1458] = 645, + [1459] = 1097, + [1460] = 1104, + [1461] = 1055, + [1462] = 1120, + [1463] = 1133, + [1464] = 1122, + [1465] = 1081, + [1466] = 644, + [1467] = 632, + [1468] = 635, + [1469] = 630, + [1470] = 1326, + [1471] = 1342, + [1472] = 633, + [1473] = 647, + [1474] = 640, + [1475] = 643, + [1476] = 639, + [1477] = 627, + [1478] = 646, + [1479] = 642, + [1480] = 645, + [1481] = 629, [1482] = 629, - [1483] = 1371, - [1484] = 1368, + [1483] = 629, + [1484] = 629, [1485] = 1485, [1486] = 1486, [1487] = 1487, @@ -4258,1308 +4258,1308 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1490] = 1490, [1491] = 1491, [1492] = 1492, - [1493] = 1493, - [1494] = 1494, - [1495] = 1487, - [1496] = 1489, - [1497] = 1493, - [1498] = 1492, - [1499] = 1499, - [1500] = 1488, - [1501] = 1490, - [1502] = 1491, - [1503] = 1499, - [1504] = 1494, - [1505] = 1487, - [1506] = 1489, - [1507] = 1493, - [1508] = 1490, - [1509] = 1499, - [1510] = 1488, - [1511] = 1490, + [1493] = 1491, + [1494] = 1490, + [1495] = 1495, + [1496] = 1495, + [1497] = 1487, + [1498] = 1498, + [1499] = 1498, + [1500] = 1500, + [1501] = 1487, + [1502] = 1500, + [1503] = 1492, + [1504] = 1489, + [1505] = 1489, + [1506] = 1491, + [1507] = 1495, + [1508] = 1488, + [1509] = 1490, + [1510] = 1500, + [1511] = 1498, [1512] = 1491, [1513] = 1492, - [1514] = 1494, - [1515] = 1491, - [1516] = 1489, - [1517] = 1493, - [1518] = 1494, - [1519] = 1499, - [1520] = 1488, - [1521] = 1487, - [1522] = 1492, + [1514] = 1498, + [1515] = 1500, + [1516] = 1488, + [1517] = 1488, + [1518] = 1490, + [1519] = 1495, + [1520] = 1492, + [1521] = 1489, + [1522] = 1487, [1523] = 1523, - [1524] = 1523, - [1525] = 1525, + [1524] = 1524, + [1525] = 1523, [1526] = 1523, [1527] = 1527, [1528] = 1528, [1529] = 1529, - [1530] = 1530, + [1530] = 1529, [1531] = 1531, - [1532] = 1528, + [1532] = 1531, [1533] = 1533, [1534] = 1529, - [1535] = 1531, - [1536] = 1530, - [1537] = 1531, - [1538] = 1530, - [1539] = 1528, - [1540] = 1530, - [1541] = 1533, - [1542] = 1529, - [1543] = 1529, - [1544] = 1533, - [1545] = 1528, - [1546] = 1531, - [1547] = 1533, + [1535] = 1533, + [1536] = 1531, + [1537] = 1537, + [1538] = 1528, + [1539] = 1531, + [1540] = 1529, + [1541] = 1528, + [1542] = 1533, + [1543] = 1533, + [1544] = 1537, + [1545] = 1537, + [1546] = 1528, + [1547] = 1537, [1548] = 1548, [1549] = 1549, [1550] = 1550, [1551] = 1549, - [1552] = 1549, - [1553] = 1550, + [1552] = 1550, + [1553] = 1553, [1554] = 1554, - [1555] = 1555, + [1555] = 1549, [1556] = 1550, [1557] = 1550, [1558] = 1549, - [1559] = 1555, + [1559] = 1553, [1560] = 1554, - [1561] = 1555, + [1561] = 1553, [1562] = 1554, [1563] = 1554, [1564] = 1554, - [1565] = 1555, - [1566] = 1555, - [1567] = 1555, - [1568] = 1554, - [1569] = 1569, - [1570] = 1368, - [1571] = 1555, - [1572] = 1555, - [1573] = 1573, - [1574] = 634, - [1575] = 1554, - [1576] = 629, - [1577] = 1371, - [1578] = 628, - [1579] = 1554, - [1580] = 631, - [1581] = 646, - [1582] = 639, - [1583] = 638, - [1584] = 1584, + [1565] = 1553, + [1566] = 1553, + [1567] = 1554, + [1568] = 1553, + [1569] = 1554, + [1570] = 1554, + [1571] = 1571, + [1572] = 633, + [1573] = 630, + [1574] = 635, + [1575] = 1326, + [1576] = 1342, + [1577] = 632, + [1578] = 1578, + [1579] = 1553, + [1580] = 1553, + [1581] = 642, + [1582] = 645, + [1583] = 1583, + [1584] = 629, [1585] = 1585, [1586] = 1586, [1587] = 1587, [1588] = 1588, - [1589] = 1589, - [1590] = 628, - [1591] = 1589, - [1592] = 1592, - [1593] = 631, - [1594] = 1368, - [1595] = 1371, - [1596] = 628, - [1597] = 629, - [1598] = 629, - [1599] = 631, - [1600] = 634, - [1601] = 1368, - [1602] = 1371, - [1603] = 628, - [1604] = 1604, - [1605] = 1586, - [1606] = 631, - [1607] = 638, - [1608] = 639, - [1609] = 646, - [1610] = 1610, - [1611] = 1585, - [1612] = 1589, - [1613] = 629, - [1614] = 1589, - [1615] = 1589, - [1616] = 1589, - [1617] = 1589, - [1618] = 1589, - [1619] = 1589, - [1620] = 1589, - [1621] = 634, - [1622] = 634, - [1623] = 1371, - [1624] = 1368, - [1625] = 1588, - [1626] = 1626, - [1627] = 1604, + [1589] = 635, + [1590] = 632, + [1591] = 1342, + [1592] = 645, + [1593] = 642, + [1594] = 1594, + [1595] = 1594, + [1596] = 629, + [1597] = 1587, + [1598] = 1586, + [1599] = 1585, + [1600] = 1326, + [1601] = 1342, + [1602] = 1602, + [1603] = 630, + [1604] = 1594, + [1605] = 633, + [1606] = 1594, + [1607] = 1326, + [1608] = 633, + [1609] = 632, + [1610] = 630, + [1611] = 1594, + [1612] = 635, + [1613] = 635, + [1614] = 632, + [1615] = 630, + [1616] = 633, + [1617] = 1594, + [1618] = 1618, + [1619] = 1594, + [1620] = 1620, + [1621] = 1594, + [1622] = 1342, + [1623] = 1326, + [1624] = 1624, + [1625] = 1594, + [1626] = 1594, + [1627] = 1588, [1628] = 1628, - [1629] = 1628, - [1630] = 1630, + [1629] = 1620, + [1630] = 1628, [1631] = 1628, - [1632] = 1632, + [1632] = 1628, [1633] = 1633, - [1634] = 1632, - [1635] = 1628, - [1636] = 1633, - [1637] = 1628, - [1638] = 1628, - [1639] = 1610, - [1640] = 1592, - [1641] = 1587, - [1642] = 1626, - [1643] = 1628, - [1644] = 1584, + [1634] = 1624, + [1635] = 1635, + [1636] = 1583, + [1637] = 1637, + [1638] = 1633, + [1639] = 1635, + [1640] = 1633, + [1641] = 1628, + [1642] = 1628, + [1643] = 1618, + [1644] = 1602, [1645] = 1628, - [1646] = 1633, + [1646] = 1628, [1647] = 1647, [1648] = 1648, [1649] = 1649, - [1650] = 1650, - [1651] = 1649, - [1652] = 1650, + [1650] = 1649, + [1651] = 1651, + [1652] = 1648, [1653] = 1653, [1654] = 1653, [1655] = 1655, - [1656] = 1655, - [1657] = 1657, - [1658] = 1658, + [1656] = 1656, + [1657] = 1656, + [1658] = 1656, [1659] = 1659, [1660] = 1660, - [1661] = 1661, + [1661] = 1656, [1662] = 1662, - [1663] = 1655, - [1664] = 1664, + [1663] = 1656, + [1664] = 1656, [1665] = 1665, - [1666] = 1666, - [1667] = 1655, - [1668] = 1655, - [1669] = 1655, - [1670] = 1655, - [1671] = 1655, + [1666] = 1656, + [1667] = 1667, + [1668] = 1668, + [1669] = 1669, + [1670] = 1670, + [1671] = 1656, [1672] = 1672, [1673] = 1673, - [1674] = 1672, - [1675] = 1675, - [1676] = 1676, - [1677] = 1677, - [1678] = 1672, - [1679] = 1675, - [1680] = 1676, - [1681] = 1676, - [1682] = 1677, - [1683] = 1675, - [1684] = 1672, - [1685] = 1675, - [1686] = 1676, - [1687] = 1677, - [1688] = 1676, - [1689] = 1672, - [1690] = 1675, - [1691] = 1676, - [1692] = 1677, - [1693] = 1677, - [1694] = 1694, - [1695] = 1672, - [1696] = 1675, - [1697] = 1676, - [1698] = 1677, + [1674] = 1674, + [1675] = 1674, + [1676] = 1672, + [1677] = 1674, + [1678] = 1673, + [1679] = 1673, + [1680] = 1674, + [1681] = 1672, + [1682] = 1673, + [1683] = 1674, + [1684] = 1673, + [1685] = 1685, + [1686] = 1672, + [1687] = 1687, + [1688] = 1672, + [1689] = 1689, + [1690] = 1672, + [1691] = 1689, + [1692] = 1685, + [1693] = 1673, + [1694] = 1689, + [1695] = 1685, + [1696] = 1674, + [1697] = 1689, + [1698] = 1698, [1699] = 1672, - [1700] = 1675, - [1701] = 1676, - [1702] = 1677, - [1703] = 1672, - [1704] = 1675, - [1705] = 1673, - [1706] = 1706, - [1707] = 1673, - [1708] = 1677, - [1709] = 1673, - [1710] = 1672, - [1711] = 1673, - [1712] = 1673, - [1713] = 1673, - [1714] = 1673, - [1715] = 1675, - [1716] = 1716, - [1717] = 1666, - [1718] = 1657, - [1719] = 1658, - [1720] = 1660, - [1721] = 1661, + [1700] = 1685, + [1701] = 1673, + [1702] = 1673, + [1703] = 1685, + [1704] = 1685, + [1705] = 1689, + [1706] = 1674, + [1707] = 1685, + [1708] = 1673, + [1709] = 1674, + [1710] = 1710, + [1711] = 1689, + [1712] = 1674, + [1713] = 1685, + [1714] = 1672, + [1715] = 1689, + [1716] = 1689, + [1717] = 1670, + [1718] = 1668, + [1719] = 1669, + [1720] = 1659, + [1721] = 1668, [1722] = 1660, - [1723] = 1666, - [1724] = 1724, - [1725] = 1665, - [1726] = 1662, - [1727] = 1657, - [1728] = 1661, - [1729] = 1664, - [1730] = 1658, - [1731] = 1659, - [1732] = 1732, - [1733] = 1664, - [1734] = 1662, - [1735] = 1659, - [1736] = 1665, - [1737] = 1737, - [1738] = 1724, - [1739] = 1661, - [1740] = 1661, - [1741] = 1665, - [1742] = 1657, - [1743] = 1658, - [1744] = 1659, - [1745] = 1664, - [1746] = 1746, - [1747] = 1747, + [1723] = 1659, + [1724] = 1669, + [1725] = 1667, + [1726] = 1726, + [1727] = 1662, + [1728] = 1728, + [1729] = 1665, + [1730] = 1662, + [1731] = 1731, + [1732] = 1670, + [1733] = 1665, + [1734] = 1667, + [1735] = 1655, + [1736] = 1655, + [1737] = 1726, + [1738] = 1660, + [1739] = 1667, + [1740] = 1668, + [1741] = 1662, + [1742] = 1665, + [1743] = 1670, + [1744] = 1655, + [1745] = 1662, + [1746] = 1660, + [1747] = 1665, [1748] = 1748, - [1749] = 1660, - [1750] = 1662, - [1751] = 1666, - [1752] = 1665, - [1753] = 1657, - [1754] = 1658, - [1755] = 1664, - [1756] = 1664, - [1757] = 1757, - [1758] = 1660, - [1759] = 1662, - [1760] = 1661, - [1761] = 1724, - [1762] = 1762, - [1763] = 1665, - [1764] = 1657, - [1765] = 1658, - [1766] = 1659, - [1767] = 1666, - [1768] = 1724, + [1749] = 1749, + [1750] = 1670, + [1751] = 1669, + [1752] = 1726, + [1753] = 1668, + [1754] = 1754, + [1755] = 1660, + [1756] = 1667, + [1757] = 1726, + [1758] = 1655, + [1759] = 1670, + [1760] = 1665, + [1761] = 1662, + [1762] = 1659, + [1763] = 1660, + [1764] = 1655, + [1765] = 1765, + [1766] = 1668, + [1767] = 1659, + [1768] = 1659, [1769] = 1769, - [1770] = 1770, - [1771] = 1666, - [1772] = 1660, - [1773] = 1662, - [1774] = 1659, + [1770] = 1667, + [1771] = 1669, + [1772] = 1772, + [1773] = 1773, + [1774] = 1669, [1775] = 1775, - [1776] = 1776, - [1777] = 1662, - [1778] = 1778, - [1779] = 1664, + [1776] = 1659, + [1777] = 1667, + [1778] = 1655, + [1779] = 1779, [1780] = 1780, - [1781] = 1781, + [1781] = 1754, [1782] = 1782, - [1783] = 1783, - [1784] = 1784, - [1785] = 1664, - [1786] = 1748, - [1787] = 1660, + [1783] = 1660, + [1784] = 1728, + [1785] = 1785, + [1786] = 1669, + [1787] = 1769, [1788] = 1788, [1789] = 1789, - [1790] = 1784, - [1791] = 1791, - [1792] = 1792, - [1793] = 1666, - [1794] = 1794, - [1795] = 1784, - [1796] = 1791, - [1797] = 1784, - [1798] = 1661, - [1799] = 1788, - [1800] = 1784, - [1801] = 1801, - [1802] = 1783, - [1803] = 1784, - [1804] = 1801, - [1805] = 1762, - [1806] = 1666, - [1807] = 1657, - [1808] = 1658, - [1809] = 1659, - [1810] = 1784, - [1811] = 1748, - [1812] = 1812, - [1813] = 1662, - [1814] = 1784, - [1815] = 1815, - [1816] = 1661, - [1817] = 1784, - [1818] = 1818, - [1819] = 1819, - [1820] = 1784, - [1821] = 1665, - [1822] = 1776, - [1823] = 1657, - [1824] = 1783, - [1825] = 1658, - [1826] = 1659, - [1827] = 1794, + [1790] = 1668, + [1791] = 1660, + [1792] = 1780, + [1793] = 1779, + [1794] = 1769, + [1795] = 1769, + [1796] = 1659, + [1797] = 1779, + [1798] = 1798, + [1799] = 1668, + [1800] = 1779, + [1801] = 1788, + [1802] = 1785, + [1803] = 1788, + [1804] = 1789, + [1805] = 1780, + [1806] = 1779, + [1807] = 1807, + [1808] = 1808, + [1809] = 1779, + [1810] = 1670, + [1811] = 1811, + [1812] = 1779, + [1813] = 1813, + [1814] = 1779, + [1815] = 1655, + [1816] = 1816, + [1817] = 1665, + [1818] = 1670, + [1819] = 1665, + [1820] = 1667, + [1821] = 1662, + [1822] = 1662, + [1823] = 1789, + [1824] = 1779, + [1825] = 1825, + [1826] = 1782, + [1827] = 1827, [1828] = 1828, - [1829] = 1732, - [1830] = 1801, - [1831] = 1794, - [1832] = 1660, - [1833] = 1748, - [1834] = 1665, + [1829] = 1669, + [1830] = 1830, + [1831] = 1831, + [1832] = 1832, + [1833] = 1807, + [1834] = 1779, [1835] = 1835, - [1836] = 1836, - [1837] = 1732, - [1838] = 1757, - [1839] = 1835, - [1840] = 1757, - [1841] = 1770, - [1842] = 1818, - [1843] = 1843, + [1836] = 1835, + [1837] = 1835, + [1838] = 1838, + [1839] = 1839, + [1840] = 1840, + [1841] = 1841, + [1842] = 1842, + [1843] = 1748, [1844] = 1844, - [1845] = 1836, - [1846] = 1846, - [1847] = 1818, - [1848] = 1732, - [1849] = 1770, + [1845] = 1845, + [1846] = 1830, + [1847] = 1728, + [1848] = 1773, + [1849] = 1849, [1850] = 1850, - [1851] = 1843, - [1852] = 1852, - [1853] = 1853, - [1854] = 1747, - [1855] = 1836, - [1856] = 1856, + [1851] = 1851, + [1852] = 1765, + [1853] = 1850, + [1854] = 1835, + [1855] = 1841, + [1856] = 1842, [1857] = 1857, - [1858] = 1818, - [1859] = 1836, + [1858] = 1835, + [1859] = 1859, [1860] = 1860, [1861] = 1861, - [1862] = 1836, - [1863] = 1857, - [1864] = 1770, - [1865] = 1843, - [1866] = 1836, - [1867] = 1867, - [1868] = 1856, - [1869] = 1869, - [1870] = 1747, - [1871] = 1757, - [1872] = 1861, - [1873] = 1873, - [1874] = 1861, - [1875] = 1867, - [1876] = 1747, - [1877] = 1877, - [1878] = 1836, - [1879] = 1879, - [1880] = 1852, - [1881] = 1881, - [1882] = 1852, - [1883] = 1867, - [1884] = 1836, + [1862] = 1748, + [1863] = 1863, + [1864] = 1765, + [1865] = 1748, + [1866] = 1866, + [1867] = 1835, + [1868] = 1839, + [1869] = 1857, + [1870] = 1835, + [1871] = 1851, + [1872] = 1842, + [1873] = 1765, + [1874] = 1841, + [1875] = 1728, + [1876] = 1876, + [1877] = 1830, + [1878] = 1850, + [1879] = 1839, + [1880] = 1830, + [1881] = 1863, + [1882] = 1773, + [1883] = 1835, + [1884] = 1773, [1885] = 1885, [1886] = 1886, [1887] = 1887, [1888] = 1888, - [1889] = 1889, + [1889] = 1808, [1890] = 1890, - [1891] = 1887, + [1891] = 1891, [1892] = 1892, [1893] = 1893, [1894] = 1894, - [1895] = 1819, + [1895] = 1895, [1896] = 1896, - [1897] = 1892, - [1898] = 1757, + [1897] = 1897, + [1898] = 1898, [1899] = 1899, [1900] = 1900, - [1901] = 1900, + [1901] = 1901, [1902] = 1902, - [1903] = 1846, - [1904] = 1904, + [1903] = 1903, + [1904] = 1754, [1905] = 1905, - [1906] = 1747, - [1907] = 1769, + [1906] = 1906, + [1907] = 1907, [1908] = 1908, - [1909] = 1909, - [1910] = 1910, - [1911] = 1762, - [1912] = 1912, - [1913] = 1913, + [1909] = 1894, + [1910] = 1583, + [1911] = 1902, + [1912] = 1885, + [1913] = 1754, [1914] = 1914, - [1915] = 1915, + [1915] = 1901, [1916] = 1916, [1917] = 1917, - [1918] = 1889, + [1918] = 1907, [1919] = 1919, - [1920] = 1869, - [1921] = 1921, - [1922] = 1904, - [1923] = 1819, - [1924] = 1924, - [1925] = 1890, + [1920] = 1920, + [1921] = 1906, + [1922] = 1588, + [1923] = 1923, + [1924] = 1773, + [1925] = 1844, [1926] = 1926, [1927] = 1927, - [1928] = 1928, - [1929] = 1769, - [1930] = 1930, + [1928] = 1906, + [1929] = 1929, + [1930] = 1908, [1931] = 1931, - [1932] = 1896, - [1933] = 1584, + [1932] = 1825, + [1933] = 1933, [1934] = 1934, - [1935] = 1935, - [1936] = 1902, - [1937] = 1846, - [1938] = 1938, - [1939] = 1869, - [1940] = 1940, - [1941] = 1941, + [1935] = 1825, + [1936] = 1772, + [1937] = 1772, + [1938] = 1890, + [1939] = 1939, + [1940] = 1923, + [1941] = 1754, [1942] = 1942, [1943] = 1943, - [1944] = 1902, - [1945] = 1894, - [1946] = 1770, - [1947] = 1947, - [1948] = 1948, - [1949] = 1762, - [1950] = 1950, - [1951] = 1587, + [1944] = 1907, + [1945] = 1945, + [1946] = 1923, + [1947] = 1886, + [1948] = 1765, + [1949] = 1949, + [1950] = 1844, + [1951] = 1898, [1952] = 1952, - [1953] = 1846, - [1954] = 1954, - [1955] = 1887, - [1956] = 1762, + [1953] = 1953, + [1954] = 1899, + [1955] = 1897, + [1956] = 1956, [1957] = 1957, - [1958] = 1904, - [1959] = 1959, + [1958] = 1886, + [1959] = 1927, [1960] = 1960, - [1961] = 1928, - [1962] = 1900, + [1961] = 1961, + [1962] = 1943, [1963] = 1888, - [1964] = 1928, - [1965] = 1769, - [1966] = 1896, - [1967] = 1947, - [1968] = 1869, - [1969] = 1905, - [1970] = 1970, - [1971] = 1952, - [1972] = 1957, - [1973] = 1905, - [1974] = 1960, - [1975] = 1975, - [1976] = 1976, - [1977] = 1935, - [1978] = 1792, + [1964] = 1916, + [1965] = 1890, + [1966] = 1866, + [1967] = 1892, + [1968] = 1923, + [1969] = 1969, + [1970] = 1772, + [1971] = 1971, + [1972] = 1972, + [1973] = 1973, + [1974] = 1917, + [1975] = 1825, + [1976] = 1866, + [1977] = 1901, + [1978] = 1916, [1979] = 1979, - [1980] = 1935, - [1981] = 1981, - [1982] = 1919, - [1983] = 1819, - [1984] = 1948, - [1985] = 1904, - [1986] = 1899, - [1987] = 1930, - [1988] = 1899, - [1989] = 1888, - [1990] = 1950, - [1991] = 1950, - [1992] = 1992, - [1993] = 1913, + [1980] = 1844, + [1981] = 1939, + [1982] = 1866, + [1983] = 1983, + [1984] = 1927, + [1985] = 1748, + [1986] = 1896, + [1987] = 1939, + [1988] = 1957, + [1989] = 1989, + [1990] = 1943, + [1991] = 1902, + [1992] = 1618, + [1993] = 1898, [1994] = 1994, [1995] = 1960, - [1996] = 1996, - [1997] = 1997, + [1996] = 1971, + [1997] = 1896, [1998] = 1998, - [1999] = 1999, - [2000] = 2000, - [2001] = 2001, - [2002] = 2002, + [1999] = 1897, + [2000] = 1952, + [2001] = 1901, + [2002] = 1939, [2003] = 2003, - [2004] = 1893, - [2005] = 2005, - [2006] = 2006, - [2007] = 2007, - [2008] = 2008, - [2009] = 1997, + [2004] = 2004, + [2005] = 1841, + [2006] = 1960, + [2007] = 1825, + [2008] = 1971, + [2009] = 2009, [2010] = 2010, - [2011] = 1992, - [2012] = 2012, - [2013] = 1992, + [2011] = 1899, + [2012] = 1934, + [2013] = 2013, [2014] = 2014, - [2015] = 1917, - [2016] = 1894, - [2017] = 1889, - [2018] = 1890, + [2015] = 1994, + [2016] = 1899, + [2017] = 2017, + [2018] = 2018, [2019] = 2019, - [2020] = 2020, - [2021] = 2021, - [2022] = 1942, - [2023] = 2023, - [2024] = 1943, - [2025] = 2025, - [2026] = 2026, + [2020] = 1934, + [2021] = 1994, + [2022] = 1933, + [2023] = 1890, + [2024] = 2024, + [2025] = 1994, + [2026] = 1920, [2027] = 2027, [2028] = 2028, - [2029] = 2029, - [2030] = 2030, - [2031] = 1604, - [2032] = 1889, - [2033] = 1890, - [2034] = 2034, - [2035] = 2035, + [2029] = 1994, + [2030] = 1919, + [2031] = 1892, + [2032] = 2018, + [2033] = 2033, + [2034] = 2027, + [2035] = 1903, [2036] = 2036, [2037] = 2037, [2038] = 2038, - [2039] = 2039, - [2040] = 2040, - [2041] = 1626, + [2039] = 1933, + [2040] = 1888, + [2041] = 1961, [2042] = 2042, [2043] = 2043, - [2044] = 2044, + [2044] = 2043, [2045] = 2045, - [2046] = 1610, - [2047] = 1819, - [2048] = 2020, - [2049] = 1992, + [2046] = 2046, + [2047] = 2010, + [2048] = 1994, + [2049] = 2049, [2050] = 2050, - [2051] = 2051, - [2052] = 1592, - [2053] = 1981, - [2054] = 2054, + [2051] = 1920, + [2052] = 1919, + [2053] = 2053, + [2054] = 1620, [2055] = 2055, [2056] = 2056, - [2057] = 2057, - [2058] = 2058, - [2059] = 1952, - [2060] = 1957, - [2061] = 1960, - [2062] = 2035, - [2063] = 1992, - [2064] = 1852, - [2065] = 2065, - [2066] = 2035, - [2067] = 1908, - [2068] = 1913, - [2069] = 1950, - [2070] = 1992, - [2071] = 2054, - [2072] = 1959, - [2073] = 1893, - [2074] = 1942, - [2075] = 1943, - [2076] = 1992, + [2057] = 2042, + [2058] = 2036, + [2059] = 2059, + [2060] = 1624, + [2061] = 2061, + [2062] = 2062, + [2063] = 2063, + [2064] = 2027, + [2065] = 1896, + [2066] = 2061, + [2067] = 2067, + [2068] = 2068, + [2069] = 2069, + [2070] = 2070, + [2071] = 1994, + [2072] = 1897, + [2073] = 2073, + [2074] = 2018, + [2075] = 1994, + [2076] = 1602, [2077] = 2077, - [2078] = 1952, + [2078] = 2078, [2079] = 2079, - [2080] = 1908, - [2081] = 1913, - [2082] = 1896, - [2083] = 2083, - [2084] = 1992, - [2085] = 1957, - [2086] = 1959, - [2087] = 1888, - [2088] = 2088, - [2089] = 1959, - [2090] = 1996, + [2080] = 1898, + [2081] = 2055, + [2082] = 2082, + [2083] = 1933, + [2084] = 2084, + [2085] = 2085, + [2086] = 2086, + [2087] = 2042, + [2088] = 2038, + [2089] = 2089, + [2090] = 1888, [2091] = 2091, - [2092] = 1886, - [2093] = 1998, - [2094] = 2091, - [2095] = 2014, - [2096] = 2019, - [2097] = 1908, - [2098] = 1893, - [2099] = 2000, - [2100] = 2088, - [2101] = 2079, - [2102] = 1942, - [2103] = 1943, - [2104] = 2020, - [2105] = 1998, - [2106] = 1996, - [2107] = 1894, + [2092] = 2092, + [2093] = 2038, + [2094] = 1934, + [2095] = 2070, + [2096] = 2037, + [2097] = 2038, + [2098] = 1960, + [2099] = 2099, + [2100] = 1919, + [2101] = 2101, + [2102] = 1998, + [2103] = 2103, + [2104] = 1920, + [2105] = 1892, + [2106] = 1971, + [2107] = 2107, [2108] = 2108, - [2109] = 2035, - [2110] = 2021, - [2111] = 2111, - [2112] = 2039, + [2109] = 2109, + [2110] = 2078, + [2111] = 2103, + [2112] = 2112, [2113] = 2113, [2114] = 2114, - [2115] = 2040, - [2116] = 2042, - [2117] = 2117, + [2115] = 2115, + [2116] = 2116, + [2117] = 2115, [2118] = 2118, [2119] = 2119, - [2120] = 2003, - [2121] = 2043, + [2120] = 2120, + [2121] = 2121, [2122] = 2122, [2123] = 2123, - [2124] = 2045, + [2124] = 2124, [2125] = 2125, - [2126] = 2008, - [2127] = 2108, + [2126] = 2126, + [2127] = 2127, [2128] = 2128, - [2129] = 2051, + [2129] = 2114, [2130] = 2130, - [2131] = 2002, - [2132] = 2055, - [2133] = 2057, + [2131] = 2131, + [2132] = 2132, + [2133] = 2133, [2134] = 2134, [2135] = 2135, [2136] = 2136, - [2137] = 2002, - [2138] = 2003, - [2139] = 2006, - [2140] = 2005, - [2141] = 2007, - [2142] = 2008, - [2143] = 2010, - [2144] = 2010, - [2145] = 2021, - [2146] = 2123, - [2147] = 2021, - [2148] = 2023, - [2149] = 2149, + [2137] = 2137, + [2138] = 2138, + [2139] = 2139, + [2140] = 2140, + [2141] = 2063, + [2142] = 2142, + [2143] = 2132, + [2144] = 2134, + [2145] = 2145, + [2146] = 2146, + [2147] = 2147, + [2148] = 2148, + [2149] = 2142, [2150] = 2150, - [2151] = 2025, - [2152] = 2026, - [2153] = 2027, - [2154] = 2028, - [2155] = 2029, - [2156] = 2030, - [2157] = 2038, - [2158] = 2039, - [2159] = 2040, - [2160] = 2042, - [2161] = 2043, - [2162] = 2045, - [2163] = 2023, - [2164] = 2164, - [2165] = 2025, - [2166] = 2026, - [2167] = 2077, - [2168] = 2027, - [2169] = 2028, - [2170] = 2051, - [2171] = 2054, - [2172] = 2055, - [2173] = 2051, - [2174] = 2054, - [2175] = 2055, - [2176] = 2057, - [2177] = 2057, - [2178] = 2178, - [2179] = 2179, - [2180] = 2029, - [2181] = 2030, - [2182] = 2182, - [2183] = 2118, - [2184] = 2119, - [2185] = 2185, - [2186] = 2186, - [2187] = 2187, - [2188] = 2118, - [2189] = 2189, - [2190] = 2190, - [2191] = 2118, - [2192] = 2123, - [2193] = 2050, - [2194] = 2056, - [2195] = 2119, - [2196] = 2002, - [2197] = 2197, - [2198] = 2119, - [2199] = 2003, - [2200] = 2006, - [2201] = 2007, - [2202] = 2202, - [2203] = 2182, - [2204] = 2008, - [2205] = 2205, - [2206] = 2206, - [2207] = 2010, - [2208] = 2208, - [2209] = 2006, - [2210] = 2007, - [2211] = 2125, - [2212] = 2212, - [2213] = 2213, - [2214] = 2214, - [2215] = 2023, - [2216] = 2025, - [2217] = 2217, - [2218] = 2218, - [2219] = 2026, - [2220] = 2027, - [2221] = 2028, - [2222] = 2029, - [2223] = 2164, - [2224] = 2030, - [2225] = 2225, - [2226] = 2038, - [2227] = 2039, - [2228] = 2040, - [2229] = 2042, - [2230] = 2043, - [2231] = 2045, - [2232] = 2232, - [2233] = 2117, - [2234] = 2234, - [2235] = 2038, - [2236] = 2234, - [2237] = 2123, - [2238] = 2238, - [2239] = 1886, + [2151] = 2151, + [2152] = 2152, + [2153] = 2153, + [2154] = 2154, + [2155] = 2155, + [2156] = 2082, + [2157] = 2151, + [2158] = 2158, + [2159] = 2150, + [2160] = 2148, + [2161] = 2003, + [2162] = 2004, + [2163] = 2059, + [2164] = 2103, + [2165] = 1998, + [2166] = 2101, + [2167] = 2099, + [2168] = 2089, + [2169] = 2049, + [2170] = 2014, + [2171] = 2109, + [2172] = 2108, + [2173] = 2107, + [2174] = 2078, + [2175] = 2077, + [2176] = 2148, + [2177] = 2150, + [2178] = 2013, + [2179] = 2073, + [2180] = 2017, + [2181] = 2062, + [2182] = 2151, + [2183] = 2056, + [2184] = 2053, + [2185] = 2050, + [2186] = 2045, + [2187] = 2019, + [2188] = 2033, + [2189] = 2028, + [2190] = 2024, + [2191] = 2019, + [2192] = 2017, + [2193] = 2024, + [2194] = 2013, + [2195] = 2028, + [2196] = 2033, + [2197] = 2099, + [2198] = 2150, + [2199] = 2101, + [2200] = 2148, + [2201] = 2151, + [2202] = 2103, + [2203] = 2050, + [2204] = 2053, + [2205] = 2056, + [2206] = 2062, + [2207] = 2073, + [2208] = 2089, + [2209] = 2049, + [2210] = 2014, + [2211] = 2109, + [2212] = 2077, + [2213] = 2108, + [2214] = 2107, + [2215] = 2077, + [2216] = 2073, + [2217] = 2062, + [2218] = 2056, + [2219] = 2053, + [2220] = 2050, + [2221] = 2045, + [2222] = 2078, + [2223] = 2107, + [2224] = 2108, + [2225] = 2033, + [2226] = 2028, + [2227] = 2024, + [2228] = 2109, + [2229] = 2045, + [2230] = 2019, + [2231] = 2017, + [2232] = 2049, + [2233] = 2013, + [2234] = 2089, + [2235] = 2014, + [2236] = 2099, + [2237] = 2101, + [2238] = 1998, + [2239] = 2239, [2240] = 2240, [2241] = 2241, [2242] = 2242, [2243] = 2243, [2244] = 2244, - [2245] = 2245, + [2245] = 2146, [2246] = 2246, - [2247] = 2244, - [2248] = 2246, + [2247] = 2247, + [2248] = 2248, [2249] = 2249, [2250] = 2250, [2251] = 2251, - [2252] = 2250, - [2253] = 2251, + [2252] = 2252, + [2253] = 2253, [2254] = 2254, - [2255] = 2255, + [2255] = 2242, [2256] = 2256, - [2257] = 2202, + [2257] = 2249, [2258] = 2258, - [2259] = 649, - [2260] = 2260, - [2261] = 2238, - [2262] = 2262, - [2263] = 2263, - [2264] = 2242, - [2265] = 1926, - [2266] = 2266, - [2267] = 2267, + [2259] = 2258, + [2260] = 1588, + [2261] = 2261, + [2262] = 2244, + [2263] = 1952, + [2264] = 2158, + [2265] = 2265, + [2266] = 2239, + [2267] = 1583, [2268] = 2268, [2269] = 2269, [2270] = 2270, - [2271] = 2245, - [2272] = 2272, + [2271] = 1961, + [2272] = 2249, [2273] = 2273, [2274] = 2274, - [2275] = 2275, - [2276] = 2255, + [2275] = 2247, + [2276] = 2274, [2277] = 2277, - [2278] = 1934, - [2279] = 2267, - [2280] = 654, - [2281] = 1975, - [2282] = 2282, - [2283] = 2250, - [2284] = 2284, - [2285] = 1587, - [2286] = 2286, - [2287] = 2241, - [2288] = 1938, - [2289] = 2267, + [2278] = 2278, + [2279] = 2279, + [2280] = 2280, + [2281] = 2281, + [2282] = 2251, + [2283] = 2278, + [2284] = 2244, + [2285] = 2285, + [2286] = 2243, + [2287] = 2152, + [2288] = 2153, + [2289] = 2154, [2290] = 2290, - [2291] = 2291, + [2291] = 2253, [2292] = 2292, - [2293] = 2293, - [2294] = 2260, - [2295] = 2128, - [2296] = 2190, - [2297] = 2251, - [2298] = 2242, - [2299] = 2260, - [2300] = 997, - [2301] = 2282, - [2302] = 2187, - [2303] = 2242, - [2304] = 2304, - [2305] = 2267, + [2293] = 1027, + [2294] = 2294, + [2295] = 1961, + [2296] = 1952, + [2297] = 1969, + [2298] = 1004, + [2299] = 2299, + [2300] = 2300, + [2301] = 2154, + [2302] = 2302, + [2303] = 2153, + [2304] = 2254, + [2305] = 2152, [2306] = 2306, - [2307] = 2267, - [2308] = 2268, - [2309] = 2284, - [2310] = 2268, - [2311] = 2254, - [2312] = 1604, - [2313] = 2245, - [2314] = 2314, - [2315] = 2315, - [2316] = 2273, - [2317] = 2274, - [2318] = 1917, - [2319] = 2245, - [2320] = 2277, - [2321] = 2292, - [2322] = 2286, - [2323] = 2273, - [2324] = 2282, - [2325] = 2274, - [2326] = 2284, - [2327] = 2241, - [2328] = 2286, - [2329] = 2241, - [2330] = 2277, - [2331] = 2331, - [2332] = 2332, - [2333] = 1917, - [2334] = 2268, - [2335] = 2282, - [2336] = 2273, - [2337] = 2337, - [2338] = 2284, + [2307] = 2307, + [2308] = 2273, + [2309] = 2309, + [2310] = 2310, + [2311] = 2309, + [2312] = 2306, + [2313] = 2307, + [2314] = 2299, + [2315] = 2153, + [2316] = 2316, + [2317] = 2277, + [2318] = 2300, + [2319] = 1961, + [2320] = 1952, + [2321] = 2146, + [2322] = 2290, + [2323] = 1972, + [2324] = 2146, + [2325] = 1905, + [2326] = 1891, + [2327] = 1887, + [2328] = 2328, + [2329] = 2329, + [2330] = 1949, + [2331] = 1956, + [2332] = 2280, + [2333] = 657, + [2334] = 2243, + [2335] = 2281, + [2336] = 2336, + [2337] = 2279, + [2338] = 2338, [2339] = 2339, - [2340] = 2340, - [2341] = 2260, - [2342] = 2286, - [2343] = 2241, - [2344] = 2242, + [2340] = 2251, + [2341] = 2341, + [2342] = 2342, + [2343] = 2343, + [2344] = 2248, [2345] = 2345, - [2346] = 1584, - [2347] = 2267, - [2348] = 2254, - [2349] = 2202, - [2350] = 2268, - [2351] = 2304, - [2352] = 2245, - [2353] = 2242, - [2354] = 2273, - [2355] = 2274, - [2356] = 2149, - [2357] = 2345, - [2358] = 2277, - [2359] = 2359, + [2346] = 2241, + [2347] = 2347, + [2348] = 2348, + [2349] = 2338, + [2350] = 2244, + [2351] = 2281, + [2352] = 2280, + [2353] = 2269, + [2354] = 2258, + [2355] = 2249, + [2356] = 2356, + [2357] = 2281, + [2358] = 2280, + [2359] = 2269, [2360] = 2360, - [2361] = 2282, - [2362] = 2284, - [2363] = 2363, - [2364] = 2286, - [2365] = 2241, - [2366] = 2366, - [2367] = 2187, - [2368] = 2368, - [2369] = 2369, - [2370] = 2274, - [2371] = 655, - [2372] = 2360, - [2373] = 1587, - [2374] = 2260, - [2375] = 2214, - [2376] = 2260, - [2377] = 2242, - [2378] = 2345, - [2379] = 2314, - [2380] = 2267, - [2381] = 2315, - [2382] = 2340, - [2383] = 2284, - [2384] = 2360, - [2385] = 2385, - [2386] = 2245, - [2387] = 2387, + [2361] = 2265, + [2362] = 2239, + [2363] = 2258, + [2364] = 2269, + [2365] = 2365, + [2366] = 2135, + [2367] = 2281, + [2368] = 2280, + [2369] = 2265, + [2370] = 2239, + [2371] = 2133, + [2372] = 2372, + [2373] = 2269, + [2374] = 1929, + [2375] = 1583, + [2376] = 2278, + [2377] = 658, + [2378] = 2356, + [2379] = 2240, + [2380] = 2274, + [2381] = 2274, + [2382] = 2278, + [2383] = 2316, + [2384] = 2280, + [2385] = 2281, + [2386] = 1624, + [2387] = 2285, [2388] = 2273, - [2389] = 2274, - [2390] = 2390, - [2391] = 2277, - [2392] = 2368, - [2393] = 2243, - [2394] = 2282, - [2395] = 2284, + [2389] = 2124, + [2390] = 2123, + [2391] = 2247, + [2392] = 652, + [2393] = 2393, + [2394] = 2265, + [2395] = 2269, [2396] = 2396, - [2397] = 2286, - [2398] = 2241, - [2399] = 2399, - [2400] = 2400, - [2401] = 2387, - [2402] = 2244, - [2403] = 2403, - [2404] = 2246, - [2405] = 1027, - [2406] = 2250, - [2407] = 2407, - [2408] = 2277, - [2409] = 2286, - [2410] = 2241, - [2411] = 2114, - [2412] = 1924, - [2413] = 2251, - [2414] = 2277, - [2415] = 2286, - [2416] = 2241, - [2417] = 2135, - [2418] = 2244, - [2419] = 2150, - [2420] = 2420, - [2421] = 2245, - [2422] = 2255, + [2397] = 2239, + [2398] = 2345, + [2399] = 2265, + [2400] = 2300, + [2401] = 2270, + [2402] = 2258, + [2403] = 2268, + [2404] = 2249, + [2405] = 2244, + [2406] = 2307, + [2407] = 2248, + [2408] = 2309, + [2409] = 2279, + [2410] = 2250, + [2411] = 2306, + [2412] = 2412, + [2413] = 2299, + [2414] = 2251, + [2415] = 2243, + [2416] = 2112, + [2417] = 2417, + [2418] = 2253, + [2419] = 2343, + [2420] = 2290, + [2421] = 2421, + [2422] = 660, [2423] = 2423, - [2424] = 1587, - [2425] = 1886, - [2426] = 2426, - [2427] = 2266, - [2428] = 2266, - [2429] = 2272, - [2430] = 2270, - [2431] = 2268, - [2432] = 2202, - [2433] = 2403, - [2434] = 2314, - [2435] = 2315, - [2436] = 2260, - [2437] = 2437, + [2424] = 2281, + [2425] = 2280, + [2426] = 2339, + [2427] = 2278, + [2428] = 2274, + [2429] = 2429, + [2430] = 2243, + [2431] = 2269, + [2432] = 2269, + [2433] = 2290, + [2434] = 2239, + [2435] = 2435, + [2436] = 2251, + [2437] = 2265, [2438] = 2438, - [2439] = 2255, - [2440] = 2440, - [2441] = 2262, - [2442] = 2293, - [2443] = 2242, - [2444] = 2238, - [2445] = 2187, - [2446] = 2214, - [2447] = 2273, - [2448] = 2274, - [2449] = 2437, - [2450] = 2270, - [2451] = 2403, - [2452] = 2260, - [2453] = 2453, - [2454] = 2267, - [2455] = 2277, - [2456] = 2366, - [2457] = 2457, - [2458] = 2458, - [2459] = 2243, - [2460] = 2268, - [2461] = 2277, - [2462] = 2245, - [2463] = 2286, - [2464] = 2291, - [2465] = 2273, - [2466] = 2274, - [2467] = 2243, - [2468] = 2275, - [2469] = 2277, - [2470] = 2470, - [2471] = 2331, - [2472] = 2282, - [2473] = 2284, - [2474] = 2286, - [2475] = 2241, - [2476] = 652, - [2477] = 1886, - [2478] = 1917, - [2479] = 2282, - [2480] = 2360, - [2481] = 2390, - [2482] = 2457, - [2483] = 2399, - [2484] = 2440, - [2485] = 2485, - [2486] = 2258, - [2487] = 2458, - [2488] = 653, - [2489] = 2489, - [2490] = 1940, - [2491] = 1976, - [2492] = 1885, - [2493] = 2290, - [2494] = 2470, - [2495] = 2485, - [2496] = 2246, - [2497] = 2332, - [2498] = 2268, + [2439] = 2258, + [2440] = 2336, + [2441] = 2249, + [2442] = 2285, + [2443] = 2274, + [2444] = 2244, + [2445] = 2243, + [2446] = 2244, + [2447] = 2278, + [2448] = 2280, + [2449] = 2249, + [2450] = 2251, + [2451] = 2281, + [2452] = 2452, + [2453] = 2243, + [2454] = 2341, + [2455] = 2329, + [2456] = 2258, + [2457] = 2365, + [2458] = 2277, + [2459] = 1583, + [2460] = 2251, + [2461] = 2328, + [2462] = 2265, + [2463] = 2239, + [2464] = 2299, + [2465] = 2306, + [2466] = 2269, + [2467] = 2281, + [2468] = 2309, + [2469] = 2307, + [2470] = 2292, + [2471] = 2274, + [2472] = 2280, + [2473] = 2278, + [2474] = 2278, + [2475] = 2280, + [2476] = 2281, + [2477] = 2274, + [2478] = 2300, + [2479] = 2479, + [2480] = 2342, + [2481] = 2269, + [2482] = 648, + [2483] = 2294, + [2484] = 2484, + [2485] = 2285, + [2486] = 2302, + [2487] = 2417, + [2488] = 2310, + [2489] = 2243, + [2490] = 2239, + [2491] = 2265, + [2492] = 2254, + [2493] = 2258, + [2494] = 2251, + [2495] = 2249, + [2496] = 2496, + [2497] = 2244, + [2498] = 2498, [2499] = 2499, [2500] = 2500, [2501] = 2501, - [2502] = 2001, + [2502] = 2502, [2503] = 2503, - [2504] = 2501, + [2504] = 2504, [2505] = 2505, [2506] = 2506, [2507] = 2507, [2508] = 2508, [2509] = 2509, - [2510] = 2501, + [2510] = 2510, [2511] = 2511, [2512] = 2512, [2513] = 2513, - [2514] = 1610, - [2515] = 1626, + [2514] = 2514, + [2515] = 2515, [2516] = 2516, [2517] = 2517, [2518] = 2518, [2519] = 2519, [2520] = 2520, - [2521] = 2521, - [2522] = 2522, + [2521] = 648, + [2522] = 1620, [2523] = 2523, [2524] = 2524, - [2525] = 652, + [2525] = 2396, [2526] = 2526, [2527] = 2527, - [2528] = 1610, - [2529] = 2529, - [2530] = 2530, + [2528] = 2085, + [2529] = 1624, + [2530] = 2085, [2531] = 2531, - [2532] = 2532, - [2533] = 2529, + [2532] = 1602, + [2533] = 2533, [2534] = 2534, - [2535] = 2535, - [2536] = 2536, - [2537] = 2537, - [2538] = 2538, - [2539] = 2539, - [2540] = 2540, - [2541] = 2541, - [2542] = 2505, + [2535] = 1618, + [2536] = 2516, + [2537] = 2518, + [2538] = 2526, + [2539] = 2531, + [2540] = 2531, + [2541] = 2527, + [2542] = 2526, [2543] = 2543, - [2544] = 2522, + [2544] = 658, [2545] = 2545, - [2546] = 2501, - [2547] = 2538, - [2548] = 1604, - [2549] = 2549, - [2550] = 2539, - [2551] = 2499, - [2552] = 2339, - [2553] = 2553, - [2554] = 2554, - [2555] = 2001, - [2556] = 2505, - [2557] = 2506, - [2558] = 2509, - [2559] = 2506, - [2560] = 2509, - [2561] = 2561, - [2562] = 653, - [2563] = 2536, - [2564] = 2561, + [2546] = 2546, + [2547] = 2547, + [2548] = 2548, + [2549] = 2510, + [2550] = 2550, + [2551] = 2509, + [2552] = 2547, + [2553] = 2517, + [2554] = 2519, + [2555] = 660, + [2556] = 2556, + [2557] = 2557, + [2558] = 2558, + [2559] = 2393, + [2560] = 657, + [2561] = 2372, + [2562] = 1618, + [2563] = 1620, + [2564] = 2546, [2565] = 2565, - [2566] = 2538, - [2567] = 2520, - [2568] = 2539, + [2566] = 2516, + [2567] = 2085, + [2568] = 2518, [2569] = 2569, - [2570] = 1592, + [2570] = 2519, [2571] = 2571, - [2572] = 649, - [2573] = 1592, - [2574] = 654, - [2575] = 2575, + [2572] = 2531, + [2573] = 2520, + [2574] = 2574, + [2575] = 2524, [2576] = 2576, - [2577] = 2537, + [2577] = 2543, [2578] = 2578, [2579] = 2579, - [2580] = 2489, - [2581] = 2581, + [2580] = 2580, + [2581] = 2518, [2582] = 2582, - [2583] = 2554, + [2583] = 2583, [2584] = 2584, - [2585] = 2585, + [2585] = 2548, [2586] = 2586, - [2587] = 2538, - [2588] = 2522, - [2589] = 2589, - [2590] = 2539, - [2591] = 2512, - [2592] = 1626, - [2593] = 2549, - [2594] = 2565, + [2587] = 2510, + [2588] = 2588, + [2589] = 2526, + [2590] = 652, + [2591] = 2507, + [2592] = 2545, + [2593] = 2593, + [2594] = 2594, [2595] = 2595, - [2596] = 2001, - [2597] = 2522, - [2598] = 655, - [2599] = 2306, + [2596] = 1602, + [2597] = 2516, + [2598] = 2517, + [2599] = 2599, [2600] = 2600, [2601] = 2601, [2602] = 2602, [2603] = 2603, [2604] = 2604, [2605] = 2605, - [2606] = 2602, + [2606] = 2606, [2607] = 2607, [2608] = 2608, [2609] = 2609, [2610] = 2610, - [2611] = 2611, + [2611] = 2605, [2612] = 2612, - [2613] = 2601, - [2614] = 2614, - [2615] = 2615, + [2613] = 2613, + [2614] = 2605, + [2615] = 2602, [2616] = 2616, [2617] = 2617, - [2618] = 2607, + [2618] = 2618, [2619] = 2619, [2620] = 2620, - [2621] = 2619, + [2621] = 2600, [2622] = 2622, - [2623] = 2602, + [2623] = 2623, [2624] = 2624, - [2625] = 2602, + [2625] = 2625, [2626] = 2626, - [2627] = 2614, - [2628] = 2604, - [2629] = 2629, - [2630] = 2624, - [2631] = 2601, - [2632] = 2632, - [2633] = 2622, - [2634] = 2605, + [2627] = 2627, + [2628] = 2617, + [2629] = 2603, + [2630] = 2625, + [2631] = 2631, + [2632] = 2624, + [2633] = 2626, + [2634] = 2623, [2635] = 2622, - [2636] = 2636, - [2637] = 2608, - [2638] = 2611, - [2639] = 2609, - [2640] = 2640, - [2641] = 2641, - [2642] = 2624, - [2643] = 2608, - [2644] = 2612, - [2645] = 2624, - [2646] = 2612, - [2647] = 2601, - [2648] = 2626, - [2649] = 2626, - [2650] = 2650, - [2651] = 2651, - [2652] = 2601, - [2653] = 2653, - [2654] = 2604, - [2655] = 2600, - [2656] = 2612, - [2657] = 2657, - [2658] = 2658, - [2659] = 2605, - [2660] = 2614, - [2661] = 2604, - [2662] = 2629, - [2663] = 2615, - [2664] = 2604, - [2665] = 2605, - [2666] = 2605, - [2667] = 2612, - [2668] = 2608, - [2669] = 2607, - [2670] = 2607, - [2671] = 2609, - [2672] = 2672, - [2673] = 2619, - [2674] = 2674, - [2675] = 2608, - [2676] = 2612, - [2677] = 2609, - [2678] = 2619, - [2679] = 2679, - [2680] = 2614, - [2681] = 2615, - [2682] = 2609, - [2683] = 2611, - [2684] = 2636, - [2685] = 2685, - [2686] = 2686, - [2687] = 2615, - [2688] = 2688, - [2689] = 2622, - [2690] = 2607, - [2691] = 2691, - [2692] = 2602, - [2693] = 2693, - [2694] = 2619, - [2695] = 2632, - [2696] = 2658, - [2697] = 2641, - [2698] = 2605, - [2699] = 2699, - [2700] = 2601, + [2636] = 2626, + [2637] = 2637, + [2638] = 2627, + [2639] = 2625, + [2640] = 2616, + [2641] = 2624, + [2642] = 2600, + [2643] = 2623, + [2644] = 2626, + [2645] = 2616, + [2646] = 2646, + [2647] = 2616, + [2648] = 2648, + [2649] = 2622, + [2650] = 2619, + [2651] = 2631, + [2652] = 2618, + [2653] = 2600, + [2654] = 2637, + [2655] = 2625, + [2656] = 2624, + [2657] = 2600, + [2658] = 2617, + [2659] = 2619, + [2660] = 2660, + [2661] = 2618, + [2662] = 2618, + [2663] = 2623, + [2664] = 2664, + [2665] = 2617, + [2666] = 2648, + [2667] = 2617, + [2668] = 2668, + [2669] = 2669, + [2670] = 2616, + [2671] = 2617, + [2672] = 2619, + [2673] = 2673, + [2674] = 2616, + [2675] = 2675, + [2676] = 2676, + [2677] = 2677, + [2678] = 2637, + [2679] = 2660, + [2680] = 2676, + [2681] = 2602, + [2682] = 2602, + [2683] = 2600, + [2684] = 2603, + [2685] = 2664, + [2686] = 2602, + [2687] = 2613, + [2688] = 2631, + [2689] = 2610, + [2690] = 2605, + [2691] = 2605, + [2692] = 2609, + [2693] = 2622, + [2694] = 2604, + [2695] = 2623, + [2696] = 2696, + [2697] = 2626, + [2698] = 2698, + [2699] = 2622, + [2700] = 2675, [2701] = 2701, - [2702] = 2605, - [2703] = 2626, - [2704] = 2604, - [2705] = 2705, - [2706] = 2605, - [2707] = 2614, - [2708] = 2708, - [2709] = 2612, - [2710] = 2608, - [2711] = 2609, - [2712] = 2688, - [2713] = 2614, - [2714] = 2616, - [2715] = 2612, - [2716] = 2650, - [2717] = 2609, + [2702] = 2620, + [2703] = 2668, + [2704] = 2704, + [2705] = 2620, + [2706] = 2624, + [2707] = 2707, + [2708] = 2646, + [2709] = 2625, + [2710] = 2696, + [2711] = 2605, + [2712] = 2712, + [2713] = 2603, + [2714] = 2612, + [2715] = 2600, + [2716] = 2631, + [2717] = 2601, [2718] = 2718, - [2719] = 2650, - [2720] = 2686, - [2721] = 2614, - [2722] = 2632, - [2723] = 2615, + [2719] = 2719, + [2720] = 2602, + [2721] = 2613, + [2722] = 2722, + [2723] = 2696, [2724] = 2600, - [2725] = 2615, - [2726] = 2614, - [2727] = 2607, - [2728] = 2619, - [2729] = 2686, - [2730] = 2629, - [2731] = 2622, - [2732] = 2732, - [2733] = 2615, - [2734] = 2691, - [2735] = 2735, - [2736] = 2601, - [2737] = 2626, - [2738] = 2738, - [2739] = 2607, - [2740] = 2740, - [2741] = 2619, - [2742] = 2607, - [2743] = 2604, - [2744] = 2619, - [2745] = 2745, - [2746] = 2608, - [2747] = 2747, - [2748] = 2650, - [2749] = 2622, - [2750] = 2609, - [2751] = 2611, + [2725] = 2646, + [2726] = 2626, + [2727] = 2727, + [2728] = 2698, + [2729] = 2620, + [2730] = 2730, + [2731] = 2731, + [2732] = 2618, + [2733] = 2733, + [2734] = 2619, + [2735] = 2626, + [2736] = 2736, + [2737] = 2618, + [2738] = 2622, + [2739] = 2625, + [2740] = 2616, + [2741] = 2637, + [2742] = 2624, + [2743] = 2660, + [2744] = 2625, + [2745] = 2624, + [2746] = 2605, + [2747] = 2623, + [2748] = 2648, + [2749] = 2673, + [2750] = 2750, + [2751] = 2622, [2752] = 2752, - [2753] = 2753, - [2754] = 2615, - [2755] = 2612, - [2756] = 2629, - [2757] = 2608, - [2758] = 2620, - [2759] = 2653, - [2760] = 2760, - [2761] = 2760, - [2762] = 2762, - [2763] = 2763, - [2764] = 2612, - [2765] = 2640, - [2766] = 2603, - [2767] = 2672, - [2768] = 2762, - [2769] = 2640, - [2770] = 2693, - [2771] = 2611, - [2772] = 2772, - [2773] = 2611, - [2774] = 2774, - [2775] = 2611, - [2776] = 2679, - [2777] = 2611, - [2778] = 2778, + [2753] = 2631, + [2754] = 2626, + [2755] = 2625, + [2756] = 2623, + [2757] = 2602, + [2758] = 2624, + [2759] = 2759, + [2760] = 2600, + [2761] = 2761, + [2762] = 2603, + [2763] = 2637, + [2764] = 2619, + [2765] = 2648, + [2766] = 2619, + [2767] = 2623, + [2768] = 2768, + [2769] = 2618, + [2770] = 2622, + [2771] = 2771, + [2772] = 2617, + [2773] = 2600, + [2774] = 2602, + [2775] = 2605, + [2776] = 2617, + [2777] = 2777, + [2778] = 2761, [2779] = 2779, - [2780] = 2640, - [2781] = 2650, - [2782] = 2601, - [2783] = 2772, - [2784] = 2778, - [2785] = 2785, - [2786] = 2735, - [2787] = 2752, - [2788] = 2674, - [2789] = 2685, - [2790] = 2774, - [2791] = 2674, - [2792] = 2604, - [2793] = 2622, - [2794] = 2622, + [2780] = 2780, + [2781] = 2781, + [2782] = 2759, + [2783] = 2619, + [2784] = 2781, + [2785] = 2752, + [2786] = 2660, + [2787] = 2750, + [2788] = 2718, + [2789] = 2701, + [2790] = 2616, + [2791] = 2677, + [2792] = 2701, + [2793] = 2618, + [2794] = 2722, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -7529,9 +7529,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [59] = {.lex_state = 52, .external_lex_state = 3}, [60] = {.lex_state = 52, .external_lex_state = 3}, [61] = {.lex_state = 52, .external_lex_state = 3}, - [62] = {.lex_state = 52, .external_lex_state = 3}, + [62] = {.lex_state = 52, .external_lex_state = 2}, [63] = {.lex_state = 52, .external_lex_state = 3}, - [64] = {.lex_state = 52, .external_lex_state = 2}, + [64] = {.lex_state = 52, .external_lex_state = 3}, [65] = {.lex_state = 52, .external_lex_state = 3}, [66] = {.lex_state = 52, .external_lex_state = 3}, [67] = {.lex_state = 52, .external_lex_state = 2}, @@ -7630,213 +7630,213 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [160] = {.lex_state = 5, .external_lex_state = 6}, [161] = {.lex_state = 12, .external_lex_state = 4}, [162] = {.lex_state = 12, .external_lex_state = 6}, - [163] = {.lex_state = 12, .external_lex_state = 7}, - [164] = {.lex_state = 5, .external_lex_state = 7}, - [165] = {.lex_state = 12, .external_lex_state = 6}, - [166] = {.lex_state = 5, .external_lex_state = 2}, - [167] = {.lex_state = 5, .external_lex_state = 6}, - [168] = {.lex_state = 5, .external_lex_state = 6}, - [169] = {.lex_state = 5, .external_lex_state = 7}, - [170] = {.lex_state = 5, .external_lex_state = 8}, - [171] = {.lex_state = 12, .external_lex_state = 6}, + [163] = {.lex_state = 5, .external_lex_state = 2}, + [164] = {.lex_state = 5, .external_lex_state = 6}, + [165] = {.lex_state = 5, .external_lex_state = 6}, + [166] = {.lex_state = 5, .external_lex_state = 7}, + [167] = {.lex_state = 12, .external_lex_state = 6}, + [168] = {.lex_state = 5, .external_lex_state = 7}, + [169] = {.lex_state = 12, .external_lex_state = 7}, + [170] = {.lex_state = 5, .external_lex_state = 7}, + [171] = {.lex_state = 12, .external_lex_state = 2}, [172] = {.lex_state = 12, .external_lex_state = 8}, - [173] = {.lex_state = 5, .external_lex_state = 8}, - [174] = {.lex_state = 12, .external_lex_state = 7}, + [173] = {.lex_state = 12, .external_lex_state = 2}, + [174] = {.lex_state = 5, .external_lex_state = 7}, [175] = {.lex_state = 5, .external_lex_state = 7}, - [176] = {.lex_state = 11, .external_lex_state = 4}, - [177] = {.lex_state = 12, .external_lex_state = 2}, - [178] = {.lex_state = 5, .external_lex_state = 8}, - [179] = {.lex_state = 5, .external_lex_state = 7}, - [180] = {.lex_state = 5, .external_lex_state = 8}, + [176] = {.lex_state = 5, .external_lex_state = 8}, + [177] = {.lex_state = 12, .external_lex_state = 7}, + [178] = {.lex_state = 11, .external_lex_state = 4}, + [179] = {.lex_state = 5, .external_lex_state = 8}, + [180] = {.lex_state = 12, .external_lex_state = 6}, [181] = {.lex_state = 5, .external_lex_state = 7}, - [182] = {.lex_state = 12, .external_lex_state = 2}, - [183] = {.lex_state = 5, .external_lex_state = 7}, - [184] = {.lex_state = 12, .external_lex_state = 8}, + [182] = {.lex_state = 5, .external_lex_state = 8}, + [183] = {.lex_state = 5, .external_lex_state = 8}, + [184] = {.lex_state = 5, .external_lex_state = 7}, [185] = {.lex_state = 5, .external_lex_state = 8}, - [186] = {.lex_state = 5, .external_lex_state = 7}, + [186] = {.lex_state = 12, .external_lex_state = 8}, [187] = {.lex_state = 11, .external_lex_state = 2}, [188] = {.lex_state = 11, .external_lex_state = 2}, - [189] = {.lex_state = 52, .external_lex_state = 7}, + [189] = {.lex_state = 52, .external_lex_state = 8}, [190] = {.lex_state = 5, .external_lex_state = 6}, - [191] = {.lex_state = 52, .external_lex_state = 7}, + [191] = {.lex_state = 5, .external_lex_state = 6}, [192] = {.lex_state = 52, .external_lex_state = 8}, - [193] = {.lex_state = 5, .external_lex_state = 6}, - [194] = {.lex_state = 52, .external_lex_state = 2}, - [195] = {.lex_state = 52, .external_lex_state = 7}, - [196] = {.lex_state = 52, .external_lex_state = 8}, + [193] = {.lex_state = 52, .external_lex_state = 7}, + [194] = {.lex_state = 52, .external_lex_state = 7}, + [195] = {.lex_state = 52, .external_lex_state = 8}, + [196] = {.lex_state = 5, .external_lex_state = 6}, [197] = {.lex_state = 5, .external_lex_state = 6}, - [198] = {.lex_state = 52, .external_lex_state = 2}, - [199] = {.lex_state = 52, .external_lex_state = 2}, - [200] = {.lex_state = 52, .external_lex_state = 7}, - [201] = {.lex_state = 52, .external_lex_state = 7}, - [202] = {.lex_state = 52, .external_lex_state = 8}, - [203] = {.lex_state = 52, .external_lex_state = 7}, + [198] = {.lex_state = 52, .external_lex_state = 7}, + [199] = {.lex_state = 52, .external_lex_state = 8}, + [200] = {.lex_state = 52, .external_lex_state = 2}, + [201] = {.lex_state = 52, .external_lex_state = 2}, + [202] = {.lex_state = 52, .external_lex_state = 7}, + [203] = {.lex_state = 5, .external_lex_state = 6}, [204] = {.lex_state = 52, .external_lex_state = 8}, - [205] = {.lex_state = 52, .external_lex_state = 7}, + [205] = {.lex_state = 52, .external_lex_state = 8}, [206] = {.lex_state = 52, .external_lex_state = 8}, - [207] = {.lex_state = 5, .external_lex_state = 6}, - [208] = {.lex_state = 5, .external_lex_state = 6}, - [209] = {.lex_state = 52, .external_lex_state = 7}, + [207] = {.lex_state = 52, .external_lex_state = 7}, + [208] = {.lex_state = 52, .external_lex_state = 8}, + [209] = {.lex_state = 52, .external_lex_state = 8}, [210] = {.lex_state = 52, .external_lex_state = 7}, - [211] = {.lex_state = 52, .external_lex_state = 7}, - [212] = {.lex_state = 52, .external_lex_state = 8}, - [213] = {.lex_state = 5, .external_lex_state = 6}, - [214] = {.lex_state = 5, .external_lex_state = 6}, - [215] = {.lex_state = 52, .external_lex_state = 8}, - [216] = {.lex_state = 52, .external_lex_state = 8}, + [211] = {.lex_state = 5, .external_lex_state = 6}, + [212] = {.lex_state = 52, .external_lex_state = 7}, + [213] = {.lex_state = 52, .external_lex_state = 8}, + [214] = {.lex_state = 52, .external_lex_state = 7}, + [215] = {.lex_state = 5, .external_lex_state = 6}, + [216] = {.lex_state = 5, .external_lex_state = 6}, [217] = {.lex_state = 52, .external_lex_state = 7}, [218] = {.lex_state = 52, .external_lex_state = 8}, - [219] = {.lex_state = 52, .external_lex_state = 8}, - [220] = {.lex_state = 52, .external_lex_state = 8}, - [221] = {.lex_state = 5, .external_lex_state = 6}, + [219] = {.lex_state = 52, .external_lex_state = 7}, + [220] = {.lex_state = 52, .external_lex_state = 7}, + [221] = {.lex_state = 52, .external_lex_state = 2}, [222] = {.lex_state = 6, .external_lex_state = 4}, [223] = {.lex_state = 6, .external_lex_state = 4}, [224] = {.lex_state = 5, .external_lex_state = 8}, [225] = {.lex_state = 5, .external_lex_state = 8}, [226] = {.lex_state = 5, .external_lex_state = 8}, [227] = {.lex_state = 5, .external_lex_state = 8}, - [228] = {.lex_state = 5, .external_lex_state = 8}, + [228] = {.lex_state = 52, .external_lex_state = 2}, [229] = {.lex_state = 5, .external_lex_state = 8}, - [230] = {.lex_state = 52, .external_lex_state = 2}, + [230] = {.lex_state = 5, .external_lex_state = 8}, [231] = {.lex_state = 5, .external_lex_state = 8}, [232] = {.lex_state = 5, .external_lex_state = 8}, [233] = {.lex_state = 52, .external_lex_state = 2}, - [234] = {.lex_state = 5, .external_lex_state = 7}, - [235] = {.lex_state = 5, .external_lex_state = 2}, + [234] = {.lex_state = 5, .external_lex_state = 2}, + [235] = {.lex_state = 5, .external_lex_state = 7}, [236] = {.lex_state = 5, .external_lex_state = 2}, [237] = {.lex_state = 5, .external_lex_state = 2}, - [238] = {.lex_state = 52, .external_lex_state = 7}, + [238] = {.lex_state = 5, .external_lex_state = 2}, [239] = {.lex_state = 5, .external_lex_state = 2}, [240] = {.lex_state = 5, .external_lex_state = 2}, [241] = {.lex_state = 5, .external_lex_state = 2}, [242] = {.lex_state = 5, .external_lex_state = 2}, - [243] = {.lex_state = 5, .external_lex_state = 2}, - [244] = {.lex_state = 5, .external_lex_state = 2}, - [245] = {.lex_state = 5, .external_lex_state = 2}, + [243] = {.lex_state = 5, .external_lex_state = 7}, + [244] = {.lex_state = 5, .external_lex_state = 7}, + [245] = {.lex_state = 5, .external_lex_state = 7}, [246] = {.lex_state = 5, .external_lex_state = 2}, [247] = {.lex_state = 5, .external_lex_state = 2}, - [248] = {.lex_state = 5, .external_lex_state = 7}, - [249] = {.lex_state = 5, .external_lex_state = 2}, + [248] = {.lex_state = 6, .external_lex_state = 2}, + [249] = {.lex_state = 5, .external_lex_state = 7}, [250] = {.lex_state = 5, .external_lex_state = 2}, - [251] = {.lex_state = 5, .external_lex_state = 7}, - [252] = {.lex_state = 52, .external_lex_state = 6}, - [253] = {.lex_state = 6, .external_lex_state = 2}, - [254] = {.lex_state = 6, .external_lex_state = 2}, - [255] = {.lex_state = 5, .external_lex_state = 2}, - [256] = {.lex_state = 5, .external_lex_state = 7}, + [251] = {.lex_state = 5, .external_lex_state = 2}, + [252] = {.lex_state = 5, .external_lex_state = 7}, + [253] = {.lex_state = 5, .external_lex_state = 2}, + [254] = {.lex_state = 5, .external_lex_state = 7}, + [255] = {.lex_state = 52, .external_lex_state = 6}, + [256] = {.lex_state = 5, .external_lex_state = 2}, [257] = {.lex_state = 5, .external_lex_state = 2}, - [258] = {.lex_state = 5, .external_lex_state = 2}, + [258] = {.lex_state = 5, .external_lex_state = 7}, [259] = {.lex_state = 5, .external_lex_state = 2}, - [260] = {.lex_state = 5, .external_lex_state = 7}, - [261] = {.lex_state = 5, .external_lex_state = 7}, - [262] = {.lex_state = 5, .external_lex_state = 7}, - [263] = {.lex_state = 5, .external_lex_state = 7}, + [260] = {.lex_state = 5, .external_lex_state = 2}, + [261] = {.lex_state = 5, .external_lex_state = 2}, + [262] = {.lex_state = 5, .external_lex_state = 2}, + [263] = {.lex_state = 5, .external_lex_state = 2}, [264] = {.lex_state = 5, .external_lex_state = 2}, - [265] = {.lex_state = 5, .external_lex_state = 2}, + [265] = {.lex_state = 6, .external_lex_state = 2}, [266] = {.lex_state = 5, .external_lex_state = 2}, - [267] = {.lex_state = 5, .external_lex_state = 7}, + [267] = {.lex_state = 5, .external_lex_state = 2}, [268] = {.lex_state = 5, .external_lex_state = 2}, - [269] = {.lex_state = 5, .external_lex_state = 2}, - [270] = {.lex_state = 5, .external_lex_state = 2}, + [269] = {.lex_state = 52, .external_lex_state = 7}, + [270] = {.lex_state = 5, .external_lex_state = 7}, [271] = {.lex_state = 5, .external_lex_state = 2}, - [272] = {.lex_state = 5, .external_lex_state = 7}, - [273] = {.lex_state = 5, .external_lex_state = 7}, + [272] = {.lex_state = 52, .external_lex_state = 7}, + [273] = {.lex_state = 52, .external_lex_state = 8}, [274] = {.lex_state = 52, .external_lex_state = 7}, - [275] = {.lex_state = 52, .external_lex_state = 7}, + [275] = {.lex_state = 5, .external_lex_state = 7}, [276] = {.lex_state = 5, .external_lex_state = 7}, [277] = {.lex_state = 5, .external_lex_state = 7}, [278] = {.lex_state = 5, .external_lex_state = 7}, [279] = {.lex_state = 52, .external_lex_state = 7}, - [280] = {.lex_state = 52, .external_lex_state = 8}, - [281] = {.lex_state = 52, .external_lex_state = 7}, - [282] = {.lex_state = 5, .external_lex_state = 7}, + [280] = {.lex_state = 5, .external_lex_state = 7}, + [281] = {.lex_state = 5, .external_lex_state = 7}, + [282] = {.lex_state = 52, .external_lex_state = 8}, [283] = {.lex_state = 5, .external_lex_state = 7}, [284] = {.lex_state = 5, .external_lex_state = 7}, - [285] = {.lex_state = 5, .external_lex_state = 7}, + [285] = {.lex_state = 52, .external_lex_state = 7}, [286] = {.lex_state = 5, .external_lex_state = 7}, - [287] = {.lex_state = 52, .external_lex_state = 7}, - [288] = {.lex_state = 52, .external_lex_state = 8}, - [289] = {.lex_state = 52, .external_lex_state = 7}, - [290] = {.lex_state = 5, .external_lex_state = 7}, - [291] = {.lex_state = 5, .external_lex_state = 7}, - [292] = {.lex_state = 5, .external_lex_state = 7}, + [287] = {.lex_state = 52, .external_lex_state = 8}, + [288] = {.lex_state = 52, .external_lex_state = 7}, + [289] = {.lex_state = 5, .external_lex_state = 7}, + [290] = {.lex_state = 52, .external_lex_state = 7}, + [291] = {.lex_state = 52, .external_lex_state = 8}, + [292] = {.lex_state = 52, .external_lex_state = 7}, [293] = {.lex_state = 5, .external_lex_state = 7}, - [294] = {.lex_state = 5, .external_lex_state = 7}, - [295] = {.lex_state = 52, .external_lex_state = 7}, + [294] = {.lex_state = 52, .external_lex_state = 7}, + [295] = {.lex_state = 5, .external_lex_state = 7}, [296] = {.lex_state = 52, .external_lex_state = 8}, - [297] = {.lex_state = 5, .external_lex_state = 7}, - [298] = {.lex_state = 5, .external_lex_state = 7}, - [299] = {.lex_state = 5, .external_lex_state = 7}, + [297] = {.lex_state = 52, .external_lex_state = 8}, + [298] = {.lex_state = 52, .external_lex_state = 7}, + [299] = {.lex_state = 52, .external_lex_state = 7}, [300] = {.lex_state = 5, .external_lex_state = 7}, - [301] = {.lex_state = 52, .external_lex_state = 7}, - [302] = {.lex_state = 52, .external_lex_state = 8}, - [303] = {.lex_state = 52, .external_lex_state = 7}, + [301] = {.lex_state = 52, .external_lex_state = 8}, + [302] = {.lex_state = 5, .external_lex_state = 7}, + [303] = {.lex_state = 5, .external_lex_state = 7}, [304] = {.lex_state = 5, .external_lex_state = 7}, [305] = {.lex_state = 5, .external_lex_state = 7}, [306] = {.lex_state = 5, .external_lex_state = 7}, [307] = {.lex_state = 5, .external_lex_state = 7}, - [308] = {.lex_state = 52, .external_lex_state = 8}, + [308] = {.lex_state = 5, .external_lex_state = 7}, [309] = {.lex_state = 52, .external_lex_state = 7}, - [310] = {.lex_state = 52, .external_lex_state = 8}, - [311] = {.lex_state = 5, .external_lex_state = 7}, + [310] = {.lex_state = 5, .external_lex_state = 7}, + [311] = {.lex_state = 52, .external_lex_state = 8}, [312] = {.lex_state = 5, .external_lex_state = 7}, [313] = {.lex_state = 5, .external_lex_state = 7}, - [314] = {.lex_state = 5, .external_lex_state = 7}, - [315] = {.lex_state = 52, .external_lex_state = 7}, - [316] = {.lex_state = 52, .external_lex_state = 8}, + [314] = {.lex_state = 52, .external_lex_state = 7}, + [315] = {.lex_state = 5, .external_lex_state = 7}, + [316] = {.lex_state = 5, .external_lex_state = 7}, [317] = {.lex_state = 5, .external_lex_state = 7}, [318] = {.lex_state = 5, .external_lex_state = 7}, [319] = {.lex_state = 5, .external_lex_state = 7}, - [320] = {.lex_state = 5, .external_lex_state = 7}, - [321] = {.lex_state = 52, .external_lex_state = 7}, - [322] = {.lex_state = 52, .external_lex_state = 8}, - [323] = {.lex_state = 52, .external_lex_state = 7}, - [324] = {.lex_state = 5, .external_lex_state = 7}, - [325] = {.lex_state = 52, .external_lex_state = 7}, - [326] = {.lex_state = 52, .external_lex_state = 7}, + [320] = {.lex_state = 52, .external_lex_state = 7}, + [321] = {.lex_state = 5, .external_lex_state = 7}, + [322] = {.lex_state = 5, .external_lex_state = 7}, + [323] = {.lex_state = 5, .external_lex_state = 7}, + [324] = {.lex_state = 52, .external_lex_state = 7}, + [325] = {.lex_state = 5, .external_lex_state = 7}, + [326] = {.lex_state = 52, .external_lex_state = 6}, [327] = {.lex_state = 52, .external_lex_state = 8}, [328] = {.lex_state = 52, .external_lex_state = 6}, [329] = {.lex_state = 52, .external_lex_state = 8}, - [330] = {.lex_state = 52, .external_lex_state = 6}, - [331] = {.lex_state = 5, .external_lex_state = 2}, - [332] = {.lex_state = 52, .external_lex_state = 8}, - [333] = {.lex_state = 52, .external_lex_state = 7}, - [334] = {.lex_state = 52, .external_lex_state = 7}, - [335] = {.lex_state = 52, .external_lex_state = 8}, + [330] = {.lex_state = 12, .external_lex_state = 6}, + [331] = {.lex_state = 52, .external_lex_state = 6}, + [332] = {.lex_state = 52, .external_lex_state = 6}, + [333] = {.lex_state = 52, .external_lex_state = 8}, + [334] = {.lex_state = 52, .external_lex_state = 6}, + [335] = {.lex_state = 52, .external_lex_state = 7}, [336] = {.lex_state = 52, .external_lex_state = 7}, - [337] = {.lex_state = 52, .external_lex_state = 6}, + [337] = {.lex_state = 52, .external_lex_state = 7}, [338] = {.lex_state = 52, .external_lex_state = 6}, - [339] = {.lex_state = 52, .external_lex_state = 6}, - [340] = {.lex_state = 52, .external_lex_state = 8}, + [339] = {.lex_state = 52, .external_lex_state = 8}, + [340] = {.lex_state = 52, .external_lex_state = 7}, [341] = {.lex_state = 52, .external_lex_state = 6}, - [342] = {.lex_state = 52, .external_lex_state = 6}, - [343] = {.lex_state = 52, .external_lex_state = 7}, - [344] = {.lex_state = 12, .external_lex_state = 6}, - [345] = {.lex_state = 52, .external_lex_state = 6}, + [342] = {.lex_state = 52, .external_lex_state = 8}, + [343] = {.lex_state = 52, .external_lex_state = 8}, + [344] = {.lex_state = 52, .external_lex_state = 6}, + [345] = {.lex_state = 5, .external_lex_state = 2}, [346] = {.lex_state = 52, .external_lex_state = 7}, - [347] = {.lex_state = 52, .external_lex_state = 8}, + [347] = {.lex_state = 52, .external_lex_state = 7}, [348] = {.lex_state = 52, .external_lex_state = 2}, - [349] = {.lex_state = 52, .external_lex_state = 4}, + [349] = {.lex_state = 52, .external_lex_state = 7}, [350] = {.lex_state = 5, .external_lex_state = 6}, [351] = {.lex_state = 5, .external_lex_state = 6}, [352] = {.lex_state = 5, .external_lex_state = 6}, [353] = {.lex_state = 5, .external_lex_state = 6}, - [354] = {.lex_state = 52, .external_lex_state = 7}, + [354] = {.lex_state = 5, .external_lex_state = 6}, [355] = {.lex_state = 5, .external_lex_state = 6}, [356] = {.lex_state = 52, .external_lex_state = 2}, - [357] = {.lex_state = 5, .external_lex_state = 6}, + [357] = {.lex_state = 52, .external_lex_state = 4}, [358] = {.lex_state = 5, .external_lex_state = 6}, [359] = {.lex_state = 5, .external_lex_state = 6}, - [360] = {.lex_state = 52, .external_lex_state = 4}, + [360] = {.lex_state = 5, .external_lex_state = 6}, [361] = {.lex_state = 5, .external_lex_state = 6}, - [362] = {.lex_state = 5, .external_lex_state = 6}, - [363] = {.lex_state = 52, .external_lex_state = 8}, - [364] = {.lex_state = 5, .external_lex_state = 6}, + [362] = {.lex_state = 52, .external_lex_state = 4}, + [363] = {.lex_state = 5, .external_lex_state = 6}, + [364] = {.lex_state = 52, .external_lex_state = 2}, [365] = {.lex_state = 5, .external_lex_state = 6}, [366] = {.lex_state = 5, .external_lex_state = 6}, [367] = {.lex_state = 5, .external_lex_state = 6}, [368] = {.lex_state = 5, .external_lex_state = 6}, - [369] = {.lex_state = 52, .external_lex_state = 2}, + [369] = {.lex_state = 52, .external_lex_state = 8}, [370] = {.lex_state = 5, .external_lex_state = 6}, [371] = {.lex_state = 52, .external_lex_state = 8}, [372] = {.lex_state = 52, .external_lex_state = 8}, @@ -7845,21 +7845,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [375] = {.lex_state = 52, .external_lex_state = 8}, [376] = {.lex_state = 52, .external_lex_state = 8}, [377] = {.lex_state = 52, .external_lex_state = 8}, - [378] = {.lex_state = 52, .external_lex_state = 8}, + [378] = {.lex_state = 52, .external_lex_state = 4}, [379] = {.lex_state = 52, .external_lex_state = 8}, - [380] = {.lex_state = 52, .external_lex_state = 4}, - [381] = {.lex_state = 5, .external_lex_state = 2}, - [382] = {.lex_state = 52, .external_lex_state = 8}, + [380] = {.lex_state = 52, .external_lex_state = 8}, + [381] = {.lex_state = 52, .external_lex_state = 8}, + [382] = {.lex_state = 5, .external_lex_state = 2}, [383] = {.lex_state = 52, .external_lex_state = 4}, [384] = {.lex_state = 52, .external_lex_state = 8}, - [385] = {.lex_state = 52, .external_lex_state = 8}, + [385] = {.lex_state = 12, .external_lex_state = 7}, [386] = {.lex_state = 52, .external_lex_state = 8}, [387] = {.lex_state = 52, .external_lex_state = 8}, [388] = {.lex_state = 52, .external_lex_state = 8}, - [389] = {.lex_state = 12, .external_lex_state = 7}, + [389] = {.lex_state = 52, .external_lex_state = 8}, [390] = {.lex_state = 52, .external_lex_state = 8}, [391] = {.lex_state = 52, .external_lex_state = 8}, - [392] = {.lex_state = 52, .external_lex_state = 8}, + [392] = {.lex_state = 52, .external_lex_state = 4}, [393] = {.lex_state = 52, .external_lex_state = 8}, [394] = {.lex_state = 52, .external_lex_state = 8}, [395] = {.lex_state = 52, .external_lex_state = 8}, @@ -7868,10 +7868,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [398] = {.lex_state = 52, .external_lex_state = 8}, [399] = {.lex_state = 52, .external_lex_state = 8}, [400] = {.lex_state = 52, .external_lex_state = 8}, - [401] = {.lex_state = 52, .external_lex_state = 8}, + [401] = {.lex_state = 12, .external_lex_state = 7}, [402] = {.lex_state = 52, .external_lex_state = 8}, - [403] = {.lex_state = 52, .external_lex_state = 4}, - [404] = {.lex_state = 12, .external_lex_state = 7}, + [403] = {.lex_state = 52, .external_lex_state = 8}, + [404] = {.lex_state = 52, .external_lex_state = 8}, [405] = {.lex_state = 52, .external_lex_state = 8}, [406] = {.lex_state = 52, .external_lex_state = 8}, [407] = {.lex_state = 52, .external_lex_state = 8}, @@ -7879,71 +7879,71 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [409] = {.lex_state = 52, .external_lex_state = 2}, [410] = {.lex_state = 52, .external_lex_state = 2}, [411] = {.lex_state = 52, .external_lex_state = 2}, - [412] = {.lex_state = 52, .external_lex_state = 8}, - [413] = {.lex_state = 52, .external_lex_state = 8}, - [414] = {.lex_state = 52, .external_lex_state = 4}, - [415] = {.lex_state = 52, .external_lex_state = 4}, + [412] = {.lex_state = 52, .external_lex_state = 2}, + [413] = {.lex_state = 52, .external_lex_state = 7}, + [414] = {.lex_state = 52, .external_lex_state = 2}, + [415] = {.lex_state = 52, .external_lex_state = 2}, [416] = {.lex_state = 52, .external_lex_state = 2}, - [417] = {.lex_state = 12, .external_lex_state = 2}, + [417] = {.lex_state = 52, .external_lex_state = 2}, [418] = {.lex_state = 52, .external_lex_state = 2}, - [419] = {.lex_state = 52, .external_lex_state = 4}, - [420] = {.lex_state = 52, .external_lex_state = 2}, + [419] = {.lex_state = 52, .external_lex_state = 2}, + [420] = {.lex_state = 52, .external_lex_state = 7}, [421] = {.lex_state = 52, .external_lex_state = 2}, - [422] = {.lex_state = 5, .external_lex_state = 8}, - [423] = {.lex_state = 5, .external_lex_state = 2}, + [422] = {.lex_state = 52, .external_lex_state = 2}, + [423] = {.lex_state = 52, .external_lex_state = 2}, [424] = {.lex_state = 52, .external_lex_state = 4}, - [425] = {.lex_state = 52, .external_lex_state = 8}, + [425] = {.lex_state = 12, .external_lex_state = 2}, [426] = {.lex_state = 52, .external_lex_state = 2}, - [427] = {.lex_state = 52, .external_lex_state = 7}, - [428] = {.lex_state = 52, .external_lex_state = 7}, - [429] = {.lex_state = 52, .external_lex_state = 2}, + [427] = {.lex_state = 52, .external_lex_state = 2}, + [428] = {.lex_state = 12, .external_lex_state = 2}, + [429] = {.lex_state = 5, .external_lex_state = 8}, [430] = {.lex_state = 52, .external_lex_state = 2}, - [431] = {.lex_state = 52, .external_lex_state = 2}, - [432] = {.lex_state = 52, .external_lex_state = 8}, + [431] = {.lex_state = 5, .external_lex_state = 2}, + [432] = {.lex_state = 52, .external_lex_state = 2}, [433] = {.lex_state = 52, .external_lex_state = 2}, - [434] = {.lex_state = 52, .external_lex_state = 4}, - [435] = {.lex_state = 52, .external_lex_state = 2}, - [436] = {.lex_state = 52, .external_lex_state = 8}, - [437] = {.lex_state = 52, .external_lex_state = 2}, - [438] = {.lex_state = 52, .external_lex_state = 4}, - [439] = {.lex_state = 12, .external_lex_state = 2}, + [434] = {.lex_state = 52, .external_lex_state = 2}, + [435] = {.lex_state = 52, .external_lex_state = 8}, + [436] = {.lex_state = 52, .external_lex_state = 2}, + [437] = {.lex_state = 52, .external_lex_state = 4}, + [438] = {.lex_state = 52, .external_lex_state = 8}, + [439] = {.lex_state = 52, .external_lex_state = 2}, [440] = {.lex_state = 52, .external_lex_state = 2}, [441] = {.lex_state = 52, .external_lex_state = 2}, - [442] = {.lex_state = 52, .external_lex_state = 7}, + [442] = {.lex_state = 52, .external_lex_state = 4}, [443] = {.lex_state = 52, .external_lex_state = 2}, - [444] = {.lex_state = 52, .external_lex_state = 2}, + [444] = {.lex_state = 52, .external_lex_state = 7}, [445] = {.lex_state = 52, .external_lex_state = 2}, - [446] = {.lex_state = 5, .external_lex_state = 7}, - [447] = {.lex_state = 52, .external_lex_state = 2}, + [446] = {.lex_state = 52, .external_lex_state = 8}, + [447] = {.lex_state = 52, .external_lex_state = 8}, [448] = {.lex_state = 52, .external_lex_state = 2}, - [449] = {.lex_state = 52, .external_lex_state = 2}, + [449] = {.lex_state = 52, .external_lex_state = 4}, [450] = {.lex_state = 52, .external_lex_state = 2}, - [451] = {.lex_state = 52, .external_lex_state = 2}, + [451] = {.lex_state = 52, .external_lex_state = 8}, [452] = {.lex_state = 52, .external_lex_state = 2}, [453] = {.lex_state = 52, .external_lex_state = 2}, - [454] = {.lex_state = 52, .external_lex_state = 2}, + [454] = {.lex_state = 52, .external_lex_state = 4}, [455] = {.lex_state = 52, .external_lex_state = 2}, - [456] = {.lex_state = 52, .external_lex_state = 2}, - [457] = {.lex_state = 52, .external_lex_state = 2}, + [456] = {.lex_state = 52, .external_lex_state = 7}, + [457] = {.lex_state = 52, .external_lex_state = 4}, [458] = {.lex_state = 52, .external_lex_state = 2}, - [459] = {.lex_state = 52, .external_lex_state = 7}, - [460] = {.lex_state = 52, .external_lex_state = 2}, - [461] = {.lex_state = 7, .external_lex_state = 4}, + [459] = {.lex_state = 52, .external_lex_state = 2}, + [460] = {.lex_state = 5, .external_lex_state = 7}, + [461] = {.lex_state = 7, .external_lex_state = 9}, [462] = {.lex_state = 52, .external_lex_state = 2}, - [463] = {.lex_state = 7, .external_lex_state = 9}, - [464] = {.lex_state = 52, .external_lex_state = 2}, + [463] = {.lex_state = 52, .external_lex_state = 2}, + [464] = {.lex_state = 7, .external_lex_state = 9}, [465] = {.lex_state = 52, .external_lex_state = 2}, [466] = {.lex_state = 52, .external_lex_state = 2}, - [467] = {.lex_state = 7, .external_lex_state = 9}, + [467] = {.lex_state = 7, .external_lex_state = 4}, [468] = {.lex_state = 52, .external_lex_state = 2}, [469] = {.lex_state = 52, .external_lex_state = 2}, [470] = {.lex_state = 52, .external_lex_state = 2}, [471] = {.lex_state = 52, .external_lex_state = 2}, - [472] = {.lex_state = 52, .external_lex_state = 2}, + [472] = {.lex_state = 7, .external_lex_state = 4}, [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}, + [476] = {.lex_state = 52, .external_lex_state = 2}, [477] = {.lex_state = 52, .external_lex_state = 2}, [478] = {.lex_state = 52, .external_lex_state = 2}, [479] = {.lex_state = 52, .external_lex_state = 2}, @@ -7952,8 +7952,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [482] = {.lex_state = 52, .external_lex_state = 2}, [483] = {.lex_state = 52, .external_lex_state = 2}, [484] = {.lex_state = 52, .external_lex_state = 2}, - [485] = {.lex_state = 53, .external_lex_state = 10}, - [486] = {.lex_state = 54, .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}, @@ -7992,8 +7992,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [522] = {.lex_state = 52, .external_lex_state = 2}, [523] = {.lex_state = 52, .external_lex_state = 2}, [524] = {.lex_state = 52, .external_lex_state = 2}, - [525] = {.lex_state = 52, .external_lex_state = 2}, - [526] = {.lex_state = 52, .external_lex_state = 2}, + [525] = {.lex_state = 53, .external_lex_state = 10}, + [526] = {.lex_state = 54, .external_lex_state = 2}, [527] = {.lex_state = 52, .external_lex_state = 2}, [528] = {.lex_state = 52, .external_lex_state = 2}, [529] = {.lex_state = 52, .external_lex_state = 2}, @@ -8029,16 +8029,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [559] = {.lex_state = 52, .external_lex_state = 2}, [560] = {.lex_state = 52, .external_lex_state = 2}, [561] = {.lex_state = 52, .external_lex_state = 2}, - [562] = {.lex_state = 53, .external_lex_state = 10}, - [563] = {.lex_state = 54, .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}, + [565] = {.lex_state = 53, .external_lex_state = 11}, [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}, + [571] = {.lex_state = 54, .external_lex_state = 3}, [572] = {.lex_state = 52, .external_lex_state = 2}, [573] = {.lex_state = 52, .external_lex_state = 2}, [574] = {.lex_state = 52, .external_lex_state = 2}, @@ -8050,19 +8050,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [580] = {.lex_state = 52, .external_lex_state = 2}, [581] = {.lex_state = 52, .external_lex_state = 2}, [582] = {.lex_state = 52, .external_lex_state = 2}, - [583] = {.lex_state = 52, .external_lex_state = 2}, + [583] = {.lex_state = 53, .external_lex_state = 11}, [584] = {.lex_state = 52, .external_lex_state = 2}, - [585] = {.lex_state = 52, .external_lex_state = 2}, + [585] = {.lex_state = 54, .external_lex_state = 2}, [586] = {.lex_state = 52, .external_lex_state = 2}, - [587] = {.lex_state = 52, .external_lex_state = 2}, + [587] = {.lex_state = 53, .external_lex_state = 10}, [588] = {.lex_state = 52, .external_lex_state = 2}, [589] = {.lex_state = 52, .external_lex_state = 2}, - [590] = {.lex_state = 53, .external_lex_state = 11}, + [590] = {.lex_state = 52, .external_lex_state = 2}, [591] = {.lex_state = 54, .external_lex_state = 3}, [592] = {.lex_state = 52, .external_lex_state = 2}, [593] = {.lex_state = 52, .external_lex_state = 2}, - [594] = {.lex_state = 53, .external_lex_state = 11}, - [595] = {.lex_state = 54, .external_lex_state = 3}, + [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}, @@ -8077,34 +8077,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [607] = {.lex_state = 52, .external_lex_state = 2}, [608] = {.lex_state = 52, .external_lex_state = 2}, [609] = {.lex_state = 7, .external_lex_state = 9}, - [610] = {.lex_state = 52, .external_lex_state = 3}, - [611] = {.lex_state = 52, .external_lex_state = 2}, + [610] = {.lex_state = 53, .external_lex_state = 10}, + [611] = {.lex_state = 53, .external_lex_state = 11}, [612] = {.lex_state = 7, .external_lex_state = 9}, - [613] = {.lex_state = 7, .external_lex_state = 9}, + [613] = {.lex_state = 52, .external_lex_state = 2}, [614] = {.lex_state = 52, .external_lex_state = 2}, - [615] = {.lex_state = 52, .external_lex_state = 3}, - [616] = {.lex_state = 52, .external_lex_state = 2}, - [617] = {.lex_state = 7, .external_lex_state = 9}, + [615] = {.lex_state = 7, .external_lex_state = 9}, + [616] = {.lex_state = 54, .external_lex_state = 2}, + [617] = {.lex_state = 52, .external_lex_state = 3}, [618] = {.lex_state = 52, .external_lex_state = 2}, - [619] = {.lex_state = 52, .external_lex_state = 3}, - [620] = {.lex_state = 52, .external_lex_state = 3}, + [619] = {.lex_state = 7, .external_lex_state = 9}, + [620] = {.lex_state = 54, .external_lex_state = 3}, [621] = {.lex_state = 7, .external_lex_state = 9}, - [622] = {.lex_state = 53, .external_lex_state = 10}, - [623] = {.lex_state = 54, .external_lex_state = 2}, - [624] = {.lex_state = 53, .external_lex_state = 11}, - [625] = {.lex_state = 54, .external_lex_state = 3}, - [626] = {.lex_state = 7, .external_lex_state = 9}, + [622] = {.lex_state = 52, .external_lex_state = 3}, + [623] = {.lex_state = 52, .external_lex_state = 3}, + [624] = {.lex_state = 7, .external_lex_state = 9}, + [625] = {.lex_state = 52, .external_lex_state = 2}, + [626] = {.lex_state = 52, .external_lex_state = 3}, [627] = {.lex_state = 8, .external_lex_state = 9}, - [628] = {.lex_state = 8, .external_lex_state = 9}, + [628] = {.lex_state = 52, .external_lex_state = 2}, [629] = {.lex_state = 8, .external_lex_state = 9}, - [630] = {.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 = 52, .external_lex_state = 2}, + [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}, + [637] = {.lex_state = 52, .external_lex_state = 3}, [638] = {.lex_state = 8, .external_lex_state = 9}, [639] = {.lex_state = 8, .external_lex_state = 9}, [640] = {.lex_state = 8, .external_lex_state = 9}, @@ -8115,209 +8115,209 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [645] = {.lex_state = 8, .external_lex_state = 9}, [646] = {.lex_state = 8, .external_lex_state = 9}, [647] = {.lex_state = 8, .external_lex_state = 9}, - [648] = {.lex_state = 54, .external_lex_state = 2}, - [649] = {.lex_state = 53, .external_lex_state = 11}, - [650] = {.lex_state = 54, .external_lex_state = 3}, - [651] = {.lex_state = 53, .external_lex_state = 11}, - [652] = {.lex_state = 53, .external_lex_state = 11}, + [648] = {.lex_state = 52, .external_lex_state = 2}, + [649] = {.lex_state = 53, .external_lex_state = 10}, + [650] = {.lex_state = 53, .external_lex_state = 10}, + [651] = {.lex_state = 52, .external_lex_state = 6}, + [652] = {.lex_state = 52, .external_lex_state = 3}, [653] = {.lex_state = 53, .external_lex_state = 11}, [654] = {.lex_state = 53, .external_lex_state = 11}, - [655] = {.lex_state = 52, .external_lex_state = 3}, - [656] = {.lex_state = 52, .external_lex_state = 6}, - [657] = {.lex_state = 54, .external_lex_state = 3}, - [658] = {.lex_state = 53, .external_lex_state = 10}, - [659] = {.lex_state = 52, .external_lex_state = 3}, - [660] = {.lex_state = 54, .external_lex_state = 3}, - [661] = {.lex_state = 54, .external_lex_state = 3}, - [662] = {.lex_state = 54, .external_lex_state = 3}, + [655] = {.lex_state = 54, .external_lex_state = 3}, + [656] = {.lex_state = 54, .external_lex_state = 2}, + [657] = {.lex_state = 53, .external_lex_state = 10}, + [658] = {.lex_state = 54, .external_lex_state = 2}, + [659] = {.lex_state = 54, .external_lex_state = 3}, + [660] = {.lex_state = 54, .external_lex_state = 2}, + [661] = {.lex_state = 52, .external_lex_state = 6}, + [662] = {.lex_state = 52, .external_lex_state = 3}, [663] = {.lex_state = 54, .external_lex_state = 3}, - [664] = {.lex_state = 53, .external_lex_state = 10}, - [665] = {.lex_state = 53, .external_lex_state = 11}, - [666] = {.lex_state = 54, .external_lex_state = 3}, + [664] = {.lex_state = 53, .external_lex_state = 11}, + [665] = {.lex_state = 54, .external_lex_state = 3}, + [666] = {.lex_state = 54, .external_lex_state = 2}, [667] = {.lex_state = 53, .external_lex_state = 10}, - [668] = {.lex_state = 53, .external_lex_state = 11}, - [669] = {.lex_state = 53, .external_lex_state = 10}, - [670] = {.lex_state = 54, .external_lex_state = 3}, - [671] = {.lex_state = 52, .external_lex_state = 2}, - [672] = {.lex_state = 53, .external_lex_state = 11}, - [673] = {.lex_state = 53, .external_lex_state = 10}, - [674] = {.lex_state = 53, .external_lex_state = 10}, - [675] = {.lex_state = 53, .external_lex_state = 10}, - [676] = {.lex_state = 53, .external_lex_state = 11}, - [677] = {.lex_state = 54, .external_lex_state = 3}, - [678] = {.lex_state = 54, .external_lex_state = 2}, - [679] = {.lex_state = 53, .external_lex_state = 10}, + [668] = {.lex_state = 52, .external_lex_state = 2}, + [669] = {.lex_state = 54, .external_lex_state = 3}, + [670] = {.lex_state = 52, .external_lex_state = 3}, + [671] = {.lex_state = 53, .external_lex_state = 10}, + [672] = {.lex_state = 52, .external_lex_state = 3}, + [673] = {.lex_state = 53, .external_lex_state = 11}, + [674] = {.lex_state = 54, .external_lex_state = 2}, + [675] = {.lex_state = 54, .external_lex_state = 3}, + [676] = {.lex_state = 53, .external_lex_state = 10}, + [677] = {.lex_state = 53, .external_lex_state = 10}, + [678] = {.lex_state = 54, .external_lex_state = 3}, + [679] = {.lex_state = 54, .external_lex_state = 2}, [680] = {.lex_state = 54, .external_lex_state = 2}, - [681] = {.lex_state = 53, .external_lex_state = 10}, - [682] = {.lex_state = 54, .external_lex_state = 2}, + [681] = {.lex_state = 52, .external_lex_state = 3}, + [682] = {.lex_state = 53, .external_lex_state = 11}, [683] = {.lex_state = 52, .external_lex_state = 2}, - [684] = {.lex_state = 54, .external_lex_state = 2}, + [684] = {.lex_state = 53, .external_lex_state = 11}, [685] = {.lex_state = 53, .external_lex_state = 10}, - [686] = {.lex_state = 54, .external_lex_state = 2}, - [687] = {.lex_state = 53, .external_lex_state = 10}, - [688] = {.lex_state = 54, .external_lex_state = 2}, - [689] = {.lex_state = 52, .external_lex_state = 3}, - [690] = {.lex_state = 52, .external_lex_state = 6}, - [691] = {.lex_state = 54, .external_lex_state = 2}, - [692] = {.lex_state = 52, .external_lex_state = 2}, - [693] = {.lex_state = 52, .external_lex_state = 3}, - [694] = {.lex_state = 54, .external_lex_state = 2}, - [695] = {.lex_state = 52, .external_lex_state = 3}, - [696] = {.lex_state = 52, .external_lex_state = 2}, - [697] = {.lex_state = 52, .external_lex_state = 2}, + [686] = {.lex_state = 53, .external_lex_state = 11}, + [687] = {.lex_state = 54, .external_lex_state = 2}, + [688] = {.lex_state = 52, .external_lex_state = 2}, + [689] = {.lex_state = 54, .external_lex_state = 3}, + [690] = {.lex_state = 54, .external_lex_state = 3}, + [691] = {.lex_state = 53, .external_lex_state = 10}, + [692] = {.lex_state = 53, .external_lex_state = 11}, + [693] = {.lex_state = 52, .external_lex_state = 2}, + [694] = {.lex_state = 53, .external_lex_state = 10}, + [695] = {.lex_state = 53, .external_lex_state = 11}, + [696] = {.lex_state = 53, .external_lex_state = 11}, + [697] = {.lex_state = 54, .external_lex_state = 2}, [698] = {.lex_state = 53, .external_lex_state = 11}, - [699] = {.lex_state = 53, .external_lex_state = 11}, + [699] = {.lex_state = 53, .external_lex_state = 10}, [700] = {.lex_state = 52, .external_lex_state = 2}, - [701] = {.lex_state = 52, .external_lex_state = 2}, + [701] = {.lex_state = 52, .external_lex_state = 3}, [702] = {.lex_state = 52, .external_lex_state = 2}, - [703] = {.lex_state = 52, .external_lex_state = 2}, + [703] = {.lex_state = 52, .external_lex_state = 3}, [704] = {.lex_state = 52, .external_lex_state = 2}, [705] = {.lex_state = 52, .external_lex_state = 2}, [706] = {.lex_state = 52, .external_lex_state = 2}, - [707] = {.lex_state = 52, .external_lex_state = 3}, + [707] = {.lex_state = 52, .external_lex_state = 2}, [708] = {.lex_state = 52, .external_lex_state = 3}, [709] = {.lex_state = 52, .external_lex_state = 2}, - [710] = {.lex_state = 52, .external_lex_state = 3}, - [711] = {.lex_state = 52, .external_lex_state = 2}, + [710] = {.lex_state = 52, .external_lex_state = 2}, + [711] = {.lex_state = 52, .external_lex_state = 3}, [712] = {.lex_state = 52, .external_lex_state = 3}, - [713] = {.lex_state = 52, .external_lex_state = 3}, - [714] = {.lex_state = 52, .external_lex_state = 2}, - [715] = {.lex_state = 52, .external_lex_state = 2}, + [713] = {.lex_state = 52, .external_lex_state = 2}, + [714] = {.lex_state = 52, .external_lex_state = 3}, + [715] = {.lex_state = 52, .external_lex_state = 3}, [716] = {.lex_state = 52, .external_lex_state = 3}, - [717] = {.lex_state = 52, .external_lex_state = 3}, + [717] = {.lex_state = 52, .external_lex_state = 2}, [718] = {.lex_state = 52, .external_lex_state = 3}, - [719] = {.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 = 3}, - [722] = {.lex_state = 52, .external_lex_state = 7}, + [722] = {.lex_state = 52, .external_lex_state = 3}, [723] = {.lex_state = 52, .external_lex_state = 2}, - [724] = {.lex_state = 52, .external_lex_state = 7}, + [724] = {.lex_state = 52, .external_lex_state = 3}, [725] = {.lex_state = 52, .external_lex_state = 2}, - [726] = {.lex_state = 52, .external_lex_state = 3}, - [727] = {.lex_state = 52, .external_lex_state = 3}, - [728] = {.lex_state = 52, .external_lex_state = 3}, - [729] = {.lex_state = 52, .external_lex_state = 2}, - [730] = {.lex_state = 52, .external_lex_state = 2}, + [726] = {.lex_state = 52, .external_lex_state = 7}, + [727] = {.lex_state = 52, .external_lex_state = 7}, + [728] = {.lex_state = 52, .external_lex_state = 2}, + [729] = {.lex_state = 52, .external_lex_state = 3}, + [730] = {.lex_state = 52, .external_lex_state = 3}, [731] = {.lex_state = 52, .external_lex_state = 3}, - [732] = {.lex_state = 52, .external_lex_state = 2}, + [732] = {.lex_state = 52, .external_lex_state = 3}, [733] = {.lex_state = 52, .external_lex_state = 2}, [734] = {.lex_state = 52, .external_lex_state = 2}, - [735] = {.lex_state = 52, .external_lex_state = 2}, + [735] = {.lex_state = 52, .external_lex_state = 3}, [736] = {.lex_state = 52, .external_lex_state = 3}, - [737] = {.lex_state = 52, .external_lex_state = 2}, - [738] = {.lex_state = 52, .external_lex_state = 2}, - [739] = {.lex_state = 52, .external_lex_state = 3}, - [740] = {.lex_state = 52, .external_lex_state = 2}, - [741] = {.lex_state = 52, .external_lex_state = 3}, + [737] = {.lex_state = 52, .external_lex_state = 3}, + [738] = {.lex_state = 52, .external_lex_state = 3}, + [739] = {.lex_state = 52, .external_lex_state = 8}, + [740] = {.lex_state = 52, .external_lex_state = 3}, + [741] = {.lex_state = 52, .external_lex_state = 2}, [742] = {.lex_state = 52, .external_lex_state = 2}, - [743] = {.lex_state = 52, .external_lex_state = 2}, + [743] = {.lex_state = 52, .external_lex_state = 3}, [744] = {.lex_state = 52, .external_lex_state = 2}, [745] = {.lex_state = 52, .external_lex_state = 2}, - [746] = {.lex_state = 52, .external_lex_state = 2}, - [747] = {.lex_state = 52, .external_lex_state = 2}, + [746] = {.lex_state = 52, .external_lex_state = 3}, + [747] = {.lex_state = 52, .external_lex_state = 3}, [748] = {.lex_state = 52, .external_lex_state = 2}, [749] = {.lex_state = 52, .external_lex_state = 2}, [750] = {.lex_state = 52, .external_lex_state = 2}, [751] = {.lex_state = 52, .external_lex_state = 2}, - [752] = {.lex_state = 52, .external_lex_state = 3}, + [752] = {.lex_state = 52, .external_lex_state = 2}, [753] = {.lex_state = 52, .external_lex_state = 2}, [754] = {.lex_state = 52, .external_lex_state = 3}, [755] = {.lex_state = 52, .external_lex_state = 2}, [756] = {.lex_state = 52, .external_lex_state = 2}, [757] = {.lex_state = 52, .external_lex_state = 2}, - [758] = {.lex_state = 52, .external_lex_state = 2}, + [758] = {.lex_state = 52, .external_lex_state = 3}, [759] = {.lex_state = 52, .external_lex_state = 2}, [760] = {.lex_state = 52, .external_lex_state = 2}, - [761] = {.lex_state = 52, .external_lex_state = 3}, + [761] = {.lex_state = 52, .external_lex_state = 2}, [762] = {.lex_state = 52, .external_lex_state = 2}, - [763] = {.lex_state = 52, .external_lex_state = 2}, + [763] = {.lex_state = 52, .external_lex_state = 3}, [764] = {.lex_state = 52, .external_lex_state = 2}, - [765] = {.lex_state = 52, .external_lex_state = 2}, - [766] = {.lex_state = 52, .external_lex_state = 2}, - [767] = {.lex_state = 52, .external_lex_state = 7}, + [765] = {.lex_state = 52, .external_lex_state = 7}, + [766] = {.lex_state = 52, .external_lex_state = 7}, + [767] = {.lex_state = 52, .external_lex_state = 3}, [768] = {.lex_state = 52, .external_lex_state = 2}, - [769] = {.lex_state = 52, .external_lex_state = 3}, - [770] = {.lex_state = 52, .external_lex_state = 3}, - [771] = {.lex_state = 52, .external_lex_state = 2}, - [772] = {.lex_state = 52, .external_lex_state = 2}, - [773] = {.lex_state = 52, .external_lex_state = 2}, - [774] = {.lex_state = 52, .external_lex_state = 2}, + [769] = {.lex_state = 52, .external_lex_state = 2}, + [770] = {.lex_state = 52, .external_lex_state = 2}, + [771] = {.lex_state = 52, .external_lex_state = 3}, + [772] = {.lex_state = 52, .external_lex_state = 3}, + [773] = {.lex_state = 52, .external_lex_state = 3}, + [774] = {.lex_state = 52, .external_lex_state = 3}, [775] = {.lex_state = 52, .external_lex_state = 2}, - [776] = {.lex_state = 52, .external_lex_state = 2}, + [776] = {.lex_state = 52, .external_lex_state = 3}, [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 = 7}, - [781] = {.lex_state = 52, .external_lex_state = 2}, - [782] = {.lex_state = 52, .external_lex_state = 2}, + [779] = {.lex_state = 52, .external_lex_state = 3}, + [780] = {.lex_state = 52, .external_lex_state = 2}, + [781] = {.lex_state = 52, .external_lex_state = 3}, + [782] = {.lex_state = 52, .external_lex_state = 3}, [783] = {.lex_state = 52, .external_lex_state = 2}, - [784] = {.lex_state = 52, .external_lex_state = 2}, - [785] = {.lex_state = 52, .external_lex_state = 2}, + [784] = {.lex_state = 52, .external_lex_state = 3}, + [785] = {.lex_state = 52, .external_lex_state = 3}, [786] = {.lex_state = 52, .external_lex_state = 2}, - [787] = {.lex_state = 52, .external_lex_state = 3}, + [787] = {.lex_state = 52, .external_lex_state = 2}, [788] = {.lex_state = 52, .external_lex_state = 3}, - [789] = {.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}, + [792] = {.lex_state = 52, .external_lex_state = 3}, [793] = {.lex_state = 52, .external_lex_state = 2}, [794] = {.lex_state = 52, .external_lex_state = 2}, [795] = {.lex_state = 52, .external_lex_state = 3}, - [796] = {.lex_state = 52, .external_lex_state = 8}, + [796] = {.lex_state = 52, .external_lex_state = 2}, [797] = {.lex_state = 52, .external_lex_state = 2}, [798] = {.lex_state = 52, .external_lex_state = 2}, - [799] = {.lex_state = 52, .external_lex_state = 8}, - [800] = {.lex_state = 52, .external_lex_state = 3}, - [801] = {.lex_state = 52, .external_lex_state = 3}, - [802] = {.lex_state = 52, .external_lex_state = 3}, + [799] = {.lex_state = 52, .external_lex_state = 2}, + [800] = {.lex_state = 52, .external_lex_state = 2}, + [801] = {.lex_state = 52, .external_lex_state = 2}, + [802] = {.lex_state = 52, .external_lex_state = 2}, [803] = {.lex_state = 52, .external_lex_state = 3}, [804] = {.lex_state = 52, .external_lex_state = 2}, - [805] = {.lex_state = 52, .external_lex_state = 2}, + [805] = {.lex_state = 52, .external_lex_state = 3}, [806] = {.lex_state = 52, .external_lex_state = 3}, [807] = {.lex_state = 52, .external_lex_state = 3}, - [808] = {.lex_state = 52, .external_lex_state = 3}, - [809] = {.lex_state = 52, .external_lex_state = 2}, + [808] = {.lex_state = 52, .external_lex_state = 2}, + [809] = {.lex_state = 52, .external_lex_state = 3}, [810] = {.lex_state = 52, .external_lex_state = 2}, - [811] = {.lex_state = 52, .external_lex_state = 3}, + [811] = {.lex_state = 52, .external_lex_state = 2}, [812] = {.lex_state = 52, .external_lex_state = 3}, [813] = {.lex_state = 52, .external_lex_state = 3}, [814] = {.lex_state = 52, .external_lex_state = 3}, [815] = {.lex_state = 52, .external_lex_state = 3}, [816] = {.lex_state = 52, .external_lex_state = 3}, [817] = {.lex_state = 52, .external_lex_state = 2}, - [818] = {.lex_state = 52, .external_lex_state = 3}, - [819] = {.lex_state = 52, .external_lex_state = 3}, - [820] = {.lex_state = 52, .external_lex_state = 3}, + [818] = {.lex_state = 52, .external_lex_state = 2}, + [819] = {.lex_state = 52, .external_lex_state = 2}, + [820] = {.lex_state = 52, .external_lex_state = 2}, [821] = {.lex_state = 52, .external_lex_state = 3}, - [822] = {.lex_state = 52, .external_lex_state = 3}, - [823] = {.lex_state = 52, .external_lex_state = 3}, + [822] = {.lex_state = 52, .external_lex_state = 2}, + [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 = 3}, - [827] = {.lex_state = 52, .external_lex_state = 3}, - [828] = {.lex_state = 52, .external_lex_state = 3}, - [829] = {.lex_state = 52, .external_lex_state = 3}, - [830] = {.lex_state = 52, .external_lex_state = 3}, - [831] = {.lex_state = 52, .external_lex_state = 3}, + [826] = {.lex_state = 52, .external_lex_state = 2}, + [827] = {.lex_state = 52, .external_lex_state = 2}, + [828] = {.lex_state = 52, .external_lex_state = 2}, + [829] = {.lex_state = 52, .external_lex_state = 2}, + [830] = {.lex_state = 52, .external_lex_state = 2}, + [831] = {.lex_state = 52, .external_lex_state = 2}, [832] = {.lex_state = 52, .external_lex_state = 3}, [833] = {.lex_state = 52, .external_lex_state = 3}, - [834] = {.lex_state = 52, .external_lex_state = 3}, - [835] = {.lex_state = 52, .external_lex_state = 3}, - [836] = {.lex_state = 52, .external_lex_state = 3}, + [834] = {.lex_state = 52, .external_lex_state = 2}, + [835] = {.lex_state = 52, .external_lex_state = 2}, + [836] = {.lex_state = 52, .external_lex_state = 2}, [837] = {.lex_state = 52, .external_lex_state = 3}, - [838] = {.lex_state = 52, .external_lex_state = 3}, + [838] = {.lex_state = 52, .external_lex_state = 2}, [839] = {.lex_state = 52, .external_lex_state = 3}, - [840] = {.lex_state = 52, .external_lex_state = 2}, - [841] = {.lex_state = 52, .external_lex_state = 3}, + [840] = {.lex_state = 52, .external_lex_state = 3}, + [841] = {.lex_state = 52, .external_lex_state = 2}, [842] = {.lex_state = 52, .external_lex_state = 3}, [843] = {.lex_state = 52, .external_lex_state = 3}, [844] = {.lex_state = 52, .external_lex_state = 2}, [845] = {.lex_state = 52, .external_lex_state = 2}, - [846] = {.lex_state = 52, .external_lex_state = 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}, + [846] = {.lex_state = 52, .external_lex_state = 2}, + [847] = {.lex_state = 52, .external_lex_state = 8}, + [848] = {.lex_state = 52, .external_lex_state = 3}, + [849] = {.lex_state = 52, .external_lex_state = 3}, + [850] = {.lex_state = 52, .external_lex_state = 3}, [851] = {.lex_state = 52, .external_lex_state = 2}, [852] = {.lex_state = 52, .external_lex_state = 2}, [853] = {.lex_state = 52, .external_lex_state = 2}, @@ -8327,12 +8327,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [857] = {.lex_state = 52, .external_lex_state = 2}, [858] = {.lex_state = 52, .external_lex_state = 2}, [859] = {.lex_state = 52, .external_lex_state = 7}, - [860] = {.lex_state = 52, .external_lex_state = 2}, + [860] = {.lex_state = 13, .external_lex_state = 9}, [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 = 13, .external_lex_state = 9}, + [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}, @@ -8371,15 +8371,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [901] = {.lex_state = 52, .external_lex_state = 2}, [902] = {.lex_state = 52, .external_lex_state = 2}, [903] = {.lex_state = 52, .external_lex_state = 2}, - [904] = {.lex_state = 52, .external_lex_state = 2}, + [904] = {.lex_state = 13, .external_lex_state = 12}, [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 = 13, .external_lex_state = 12}, + [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 = 13, .external_lex_state = 12}, + [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}, @@ -8413,7 +8413,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [943] = {.lex_state = 52, .external_lex_state = 2}, [944] = {.lex_state = 52, .external_lex_state = 2}, [945] = {.lex_state = 52, .external_lex_state = 2}, - [946] = {.lex_state = 52, .external_lex_state = 2}, + [946] = {.lex_state = 13, .external_lex_state = 12}, [947] = {.lex_state = 52, .external_lex_state = 2}, [948] = {.lex_state = 52, .external_lex_state = 2}, [949] = {.lex_state = 52, .external_lex_state = 2}, @@ -8431,201 +8431,201 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [961] = {.lex_state = 52, .external_lex_state = 2}, [962] = {.lex_state = 52, .external_lex_state = 2}, [963] = {.lex_state = 13, .external_lex_state = 13}, - [964] = {.lex_state = 13, .external_lex_state = 4}, - [965] = {.lex_state = 13, .external_lex_state = 14}, - [966] = {.lex_state = 13, .external_lex_state = 9}, - [967] = {.lex_state = 13, .external_lex_state = 13}, - [968] = {.lex_state = 13, .external_lex_state = 4}, + [964] = {.lex_state = 13, .external_lex_state = 14}, + [965] = {.lex_state = 13, .external_lex_state = 13}, + [966] = {.lex_state = 13, .external_lex_state = 4}, + [967] = {.lex_state = 13, .external_lex_state = 4}, + [968] = {.lex_state = 13, .external_lex_state = 15}, [969] = {.lex_state = 13, .external_lex_state = 4}, - [970] = {.lex_state = 13, .external_lex_state = 15}, - [971] = {.lex_state = 13, .external_lex_state = 6}, - [972] = {.lex_state = 13, .external_lex_state = 6}, - [973] = {.lex_state = 13, .external_lex_state = 9}, + [970] = {.lex_state = 13, .external_lex_state = 9}, + [971] = {.lex_state = 13, .external_lex_state = 9}, + [972] = {.lex_state = 13, .external_lex_state = 9}, + [973] = {.lex_state = 13, .external_lex_state = 6}, [974] = {.lex_state = 13, .external_lex_state = 9}, - [975] = {.lex_state = 13, .external_lex_state = 6}, - [976] = {.lex_state = 13, .external_lex_state = 14}, + [975] = {.lex_state = 13, .external_lex_state = 9}, + [976] = {.lex_state = 13, .external_lex_state = 9}, [977] = {.lex_state = 13, .external_lex_state = 9}, - [978] = {.lex_state = 13, .external_lex_state = 6}, - [979] = {.lex_state = 13, .external_lex_state = 6}, - [980] = {.lex_state = 13, .external_lex_state = 9}, - [981] = {.lex_state = 13, .external_lex_state = 9}, - [982] = {.lex_state = 13, .external_lex_state = 9}, - [983] = {.lex_state = 13, .external_lex_state = 9}, - [984] = {.lex_state = 13, .external_lex_state = 6}, + [978] = {.lex_state = 13, .external_lex_state = 9}, + [979] = {.lex_state = 13, .external_lex_state = 14}, + [980] = {.lex_state = 13, .external_lex_state = 6}, + [981] = {.lex_state = 13, .external_lex_state = 6}, + [982] = {.lex_state = 13, .external_lex_state = 6}, + [983] = {.lex_state = 13, .external_lex_state = 6}, + [984] = {.lex_state = 13, .external_lex_state = 9}, [985] = {.lex_state = 13, .external_lex_state = 9}, - [986] = {.lex_state = 13, .external_lex_state = 9}, + [986] = {.lex_state = 13, .external_lex_state = 6}, [987] = {.lex_state = 13, .external_lex_state = 9}, - [988] = {.lex_state = 13, .external_lex_state = 12}, + [988] = {.lex_state = 13, .external_lex_state = 7}, [989] = {.lex_state = 13, .external_lex_state = 12}, [990] = {.lex_state = 13, .external_lex_state = 12}, - [991] = {.lex_state = 13, .external_lex_state = 12}, + [991] = {.lex_state = 13, .external_lex_state = 13}, [992] = {.lex_state = 13, .external_lex_state = 12}, - [993] = {.lex_state = 13, .external_lex_state = 2}, + [993] = {.lex_state = 13, .external_lex_state = 12}, [994] = {.lex_state = 13, .external_lex_state = 12}, - [995] = {.lex_state = 13, .external_lex_state = 7}, - [996] = {.lex_state = 13, .external_lex_state = 8}, - [997] = {.lex_state = 13, .external_lex_state = 4}, + [995] = {.lex_state = 13, .external_lex_state = 2}, + [996] = {.lex_state = 13, .external_lex_state = 12}, + [997] = {.lex_state = 13, .external_lex_state = 12}, [998] = {.lex_state = 13, .external_lex_state = 12}, [999] = {.lex_state = 13, .external_lex_state = 12}, [1000] = {.lex_state = 13, .external_lex_state = 12}, - [1001] = {.lex_state = 13, .external_lex_state = 8}, + [1001] = {.lex_state = 13, .external_lex_state = 12}, [1002] = {.lex_state = 13, .external_lex_state = 12}, - [1003] = {.lex_state = 13, .external_lex_state = 12}, - [1004] = {.lex_state = 13, .external_lex_state = 8}, + [1003] = {.lex_state = 13, .external_lex_state = 7}, + [1004] = {.lex_state = 13, .external_lex_state = 4}, [1005] = {.lex_state = 13, .external_lex_state = 12}, - [1006] = {.lex_state = 13, .external_lex_state = 2}, - [1007] = {.lex_state = 13, .external_lex_state = 12}, - [1008] = {.lex_state = 13, .external_lex_state = 14}, + [1006] = {.lex_state = 14, .external_lex_state = 9}, + [1007] = {.lex_state = 13, .external_lex_state = 7}, + [1008] = {.lex_state = 14, .external_lex_state = 9}, [1009] = {.lex_state = 14, .external_lex_state = 9}, - [1010] = {.lex_state = 13, .external_lex_state = 2}, - [1011] = {.lex_state = 13, .external_lex_state = 12}, - [1012] = {.lex_state = 13, .external_lex_state = 12}, + [1010] = {.lex_state = 13, .external_lex_state = 12}, + [1011] = {.lex_state = 13, .external_lex_state = 8}, + [1012] = {.lex_state = 13, .external_lex_state = 8}, [1013] = {.lex_state = 13, .external_lex_state = 12}, [1014] = {.lex_state = 13, .external_lex_state = 12}, - [1015] = {.lex_state = 13, .external_lex_state = 7}, + [1015] = {.lex_state = 13, .external_lex_state = 12}, [1016] = {.lex_state = 13, .external_lex_state = 12}, [1017] = {.lex_state = 13, .external_lex_state = 12}, [1018] = {.lex_state = 13, .external_lex_state = 12}, [1019] = {.lex_state = 13, .external_lex_state = 12}, - [1020] = {.lex_state = 13, .external_lex_state = 7}, + [1020] = {.lex_state = 13, .external_lex_state = 12}, [1021] = {.lex_state = 13, .external_lex_state = 12}, - [1022] = {.lex_state = 13, .external_lex_state = 7}, - [1023] = {.lex_state = 14, .external_lex_state = 9}, - [1024] = {.lex_state = 13, .external_lex_state = 12}, - [1025] = {.lex_state = 13, .external_lex_state = 12}, - [1026] = {.lex_state = 13, .external_lex_state = 12}, + [1022] = {.lex_state = 13, .external_lex_state = 8}, + [1023] = {.lex_state = 13, .external_lex_state = 12}, + [1024] = {.lex_state = 13, .external_lex_state = 7}, + [1025] = {.lex_state = 13, .external_lex_state = 7}, + [1026] = {.lex_state = 13, .external_lex_state = 7}, [1027] = {.lex_state = 13, .external_lex_state = 4}, - [1028] = {.lex_state = 13, .external_lex_state = 7}, - [1029] = {.lex_state = 13, .external_lex_state = 7}, - [1030] = {.lex_state = 13, .external_lex_state = 13}, - [1031] = {.lex_state = 13, .external_lex_state = 12}, + [1028] = {.lex_state = 13, .external_lex_state = 14}, + [1029] = {.lex_state = 13, .external_lex_state = 12}, + [1030] = {.lex_state = 13, .external_lex_state = 12}, + [1031] = {.lex_state = 13, .external_lex_state = 2}, [1032] = {.lex_state = 13, .external_lex_state = 12}, - [1033] = {.lex_state = 13, .external_lex_state = 12}, - [1034] = {.lex_state = 14, .external_lex_state = 9}, + [1033] = {.lex_state = 13, .external_lex_state = 2}, + [1034] = {.lex_state = 13, .external_lex_state = 12}, [1035] = {.lex_state = 13, .external_lex_state = 9}, [1036] = {.lex_state = 13, .external_lex_state = 13}, - [1037] = {.lex_state = 13, .external_lex_state = 9}, - [1038] = {.lex_state = 13, .external_lex_state = 9}, - [1039] = {.lex_state = 13, .external_lex_state = 9}, - [1040] = {.lex_state = 13, .external_lex_state = 9}, - [1041] = {.lex_state = 13, .external_lex_state = 9}, - [1042] = {.lex_state = 13, .external_lex_state = 9}, - [1043] = {.lex_state = 13, .external_lex_state = 9}, - [1044] = {.lex_state = 14, .external_lex_state = 12}, + [1037] = {.lex_state = 13, .external_lex_state = 15}, + [1038] = {.lex_state = 13, .external_lex_state = 15}, + [1039] = {.lex_state = 13, .external_lex_state = 15}, + [1040] = {.lex_state = 14, .external_lex_state = 12}, + [1041] = {.lex_state = 14, .external_lex_state = 12}, + [1042] = {.lex_state = 14, .external_lex_state = 12}, + [1043] = {.lex_state = 13, .external_lex_state = 15}, + [1044] = {.lex_state = 13, .external_lex_state = 15}, [1045] = {.lex_state = 13, .external_lex_state = 9}, [1046] = {.lex_state = 13, .external_lex_state = 9}, - [1047] = {.lex_state = 14, .external_lex_state = 12}, - [1048] = {.lex_state = 14, .external_lex_state = 12}, + [1047] = {.lex_state = 13, .external_lex_state = 9}, + [1048] = {.lex_state = 13, .external_lex_state = 9}, [1049] = {.lex_state = 14, .external_lex_state = 12}, - [1050] = {.lex_state = 13, .external_lex_state = 15}, - [1051] = {.lex_state = 13, .external_lex_state = 15}, - [1052] = {.lex_state = 14, .external_lex_state = 12}, - [1053] = {.lex_state = 14, .external_lex_state = 12}, - [1054] = {.lex_state = 14, .external_lex_state = 12}, + [1050] = {.lex_state = 13, .external_lex_state = 6}, + [1051] = {.lex_state = 14, .external_lex_state = 12}, + [1052] = {.lex_state = 14, .external_lex_state = 13}, + [1053] = {.lex_state = 13, .external_lex_state = 9}, + [1054] = {.lex_state = 13, .external_lex_state = 8}, [1055] = {.lex_state = 13, .external_lex_state = 9}, - [1056] = {.lex_state = 13, .external_lex_state = 15}, - [1057] = {.lex_state = 13, .external_lex_state = 15}, - [1058] = {.lex_state = 13, .external_lex_state = 15}, - [1059] = {.lex_state = 13, .external_lex_state = 15}, - [1060] = {.lex_state = 13, .external_lex_state = 15}, - [1061] = {.lex_state = 13, .external_lex_state = 15}, - [1062] = {.lex_state = 13, .external_lex_state = 15}, - [1063] = {.lex_state = 13, .external_lex_state = 15}, - [1064] = {.lex_state = 13, .external_lex_state = 9}, + [1056] = {.lex_state = 13, .external_lex_state = 9}, + [1057] = {.lex_state = 13, .external_lex_state = 9}, + [1058] = {.lex_state = 13, .external_lex_state = 9}, + [1059] = {.lex_state = 13, .external_lex_state = 9}, + [1060] = {.lex_state = 13, .external_lex_state = 9}, + [1061] = {.lex_state = 13, .external_lex_state = 9}, + [1062] = {.lex_state = 13, .external_lex_state = 9}, + [1063] = {.lex_state = 13, .external_lex_state = 9}, + [1064] = {.lex_state = 14, .external_lex_state = 12}, [1065] = {.lex_state = 13, .external_lex_state = 9}, [1066] = {.lex_state = 13, .external_lex_state = 9}, - [1067] = {.lex_state = 13, .external_lex_state = 9}, - [1068] = {.lex_state = 13, .external_lex_state = 9}, - [1069] = {.lex_state = 13, .external_lex_state = 9}, - [1070] = {.lex_state = 14, .external_lex_state = 12}, + [1067] = {.lex_state = 14, .external_lex_state = 12}, + [1068] = {.lex_state = 14, .external_lex_state = 12}, + [1069] = {.lex_state = 13, .external_lex_state = 8}, + [1070] = {.lex_state = 13, .external_lex_state = 9}, [1071] = {.lex_state = 13, .external_lex_state = 9}, - [1072] = {.lex_state = 13, .external_lex_state = 9}, - [1073] = {.lex_state = 14, .external_lex_state = 13}, + [1072] = {.lex_state = 13, .external_lex_state = 15}, + [1073] = {.lex_state = 13, .external_lex_state = 9}, [1074] = {.lex_state = 13, .external_lex_state = 9}, - [1075] = {.lex_state = 13, .external_lex_state = 14}, - [1076] = {.lex_state = 13, .external_lex_state = 14}, - [1077] = {.lex_state = 13, .external_lex_state = 9}, - [1078] = {.lex_state = 13, .external_lex_state = 9}, - [1079] = {.lex_state = 13, .external_lex_state = 9}, - [1080] = {.lex_state = 13, .external_lex_state = 14}, - [1081] = {.lex_state = 13, .external_lex_state = 14}, - [1082] = {.lex_state = 13, .external_lex_state = 14}, - [1083] = {.lex_state = 13, .external_lex_state = 14}, - [1084] = {.lex_state = 13, .external_lex_state = 14}, - [1085] = {.lex_state = 13, .external_lex_state = 14}, - [1086] = {.lex_state = 13, .external_lex_state = 14}, - [1087] = {.lex_state = 13, .external_lex_state = 14}, - [1088] = {.lex_state = 13, .external_lex_state = 6}, - [1089] = {.lex_state = 13, .external_lex_state = 9}, - [1090] = {.lex_state = 13, .external_lex_state = 6}, - [1091] = {.lex_state = 13, .external_lex_state = 9}, - [1092] = {.lex_state = 13, .external_lex_state = 9}, - [1093] = {.lex_state = 13, .external_lex_state = 9}, - [1094] = {.lex_state = 13, .external_lex_state = 6}, + [1075] = {.lex_state = 13, .external_lex_state = 15}, + [1076] = {.lex_state = 13, .external_lex_state = 6}, + [1077] = {.lex_state = 14, .external_lex_state = 12}, + [1078] = {.lex_state = 14, .external_lex_state = 13}, + [1079] = {.lex_state = 13, .external_lex_state = 13}, + [1080] = {.lex_state = 13, .external_lex_state = 13}, + [1081] = {.lex_state = 14, .external_lex_state = 12}, + [1082] = {.lex_state = 13, .external_lex_state = 9}, + [1083] = {.lex_state = 13, .external_lex_state = 9}, + [1084] = {.lex_state = 13, .external_lex_state = 15}, + [1085] = {.lex_state = 13, .external_lex_state = 9}, + [1086] = {.lex_state = 13, .external_lex_state = 13}, + [1087] = {.lex_state = 13, .external_lex_state = 13}, + [1088] = {.lex_state = 13, .external_lex_state = 13}, + [1089] = {.lex_state = 13, .external_lex_state = 13}, + [1090] = {.lex_state = 13, .external_lex_state = 13}, + [1091] = {.lex_state = 13, .external_lex_state = 13}, + [1092] = {.lex_state = 13, .external_lex_state = 13}, + [1093] = {.lex_state = 13, .external_lex_state = 13}, + [1094] = {.lex_state = 13, .external_lex_state = 13}, [1095] = {.lex_state = 13, .external_lex_state = 13}, - [1096] = {.lex_state = 13, .external_lex_state = 13}, - [1097] = {.lex_state = 13, .external_lex_state = 6}, + [1096] = {.lex_state = 13, .external_lex_state = 15}, + [1097] = {.lex_state = 13, .external_lex_state = 9}, [1098] = {.lex_state = 13, .external_lex_state = 13}, [1099] = {.lex_state = 13, .external_lex_state = 13}, - [1100] = {.lex_state = 13, .external_lex_state = 13}, - [1101] = {.lex_state = 13, .external_lex_state = 13}, + [1100] = {.lex_state = 14, .external_lex_state = 9}, + [1101] = {.lex_state = 13, .external_lex_state = 9}, [1102] = {.lex_state = 13, .external_lex_state = 13}, [1103] = {.lex_state = 13, .external_lex_state = 13}, - [1104] = {.lex_state = 13, .external_lex_state = 13}, - [1105] = {.lex_state = 13, .external_lex_state = 13}, + [1104] = {.lex_state = 13, .external_lex_state = 9}, + [1105] = {.lex_state = 13, .external_lex_state = 6}, [1106] = {.lex_state = 13, .external_lex_state = 9}, - [1107] = {.lex_state = 13, .external_lex_state = 8}, - [1108] = {.lex_state = 14, .external_lex_state = 12}, - [1109] = {.lex_state = 14, .external_lex_state = 12}, - [1110] = {.lex_state = 14, .external_lex_state = 12}, - [1111] = {.lex_state = 13, .external_lex_state = 8}, - [1112] = {.lex_state = 13, .external_lex_state = 8}, - [1113] = {.lex_state = 13, .external_lex_state = 9}, - [1114] = {.lex_state = 14, .external_lex_state = 13}, - [1115] = {.lex_state = 14, .external_lex_state = 13}, - [1116] = {.lex_state = 14, .external_lex_state = 13}, - [1117] = {.lex_state = 13, .external_lex_state = 9}, + [1107] = {.lex_state = 13, .external_lex_state = 15}, + [1108] = {.lex_state = 13, .external_lex_state = 14}, + [1109] = {.lex_state = 13, .external_lex_state = 14}, + [1110] = {.lex_state = 14, .external_lex_state = 13}, + [1111] = {.lex_state = 13, .external_lex_state = 14}, + [1112] = {.lex_state = 13, .external_lex_state = 14}, + [1113] = {.lex_state = 13, .external_lex_state = 14}, + [1114] = {.lex_state = 13, .external_lex_state = 14}, + [1115] = {.lex_state = 13, .external_lex_state = 14}, + [1116] = {.lex_state = 13, .external_lex_state = 14}, + [1117] = {.lex_state = 13, .external_lex_state = 14}, [1118] = {.lex_state = 13, .external_lex_state = 9}, - [1119] = {.lex_state = 13, .external_lex_state = 9}, - [1120] = {.lex_state = 14, .external_lex_state = 9}, - [1121] = {.lex_state = 13, .external_lex_state = 13}, - [1122] = {.lex_state = 13, .external_lex_state = 13}, + [1119] = {.lex_state = 13, .external_lex_state = 8}, + [1120] = {.lex_state = 13, .external_lex_state = 9}, + [1121] = {.lex_state = 13, .external_lex_state = 14}, + [1122] = {.lex_state = 14, .external_lex_state = 12}, [1123] = {.lex_state = 13, .external_lex_state = 9}, - [1124] = {.lex_state = 13, .external_lex_state = 9}, - [1125] = {.lex_state = 13, .external_lex_state = 9}, - [1126] = {.lex_state = 13, .external_lex_state = 9}, - [1127] = {.lex_state = 13, .external_lex_state = 13}, - [1128] = {.lex_state = 13, .external_lex_state = 13}, - [1129] = {.lex_state = 13, .external_lex_state = 13}, - [1130] = {.lex_state = 13, .external_lex_state = 13}, - [1131] = {.lex_state = 13, .external_lex_state = 13}, - [1132] = {.lex_state = 13, .external_lex_state = 13}, - [1133] = {.lex_state = 13, .external_lex_state = 13}, - [1134] = {.lex_state = 14, .external_lex_state = 12}, + [1124] = {.lex_state = 13, .external_lex_state = 13}, + [1125] = {.lex_state = 13, .external_lex_state = 13}, + [1126] = {.lex_state = 13, .external_lex_state = 13}, + [1127] = {.lex_state = 13, .external_lex_state = 6}, + [1128] = {.lex_state = 14, .external_lex_state = 13}, + [1129] = {.lex_state = 13, .external_lex_state = 9}, + [1130] = {.lex_state = 13, .external_lex_state = 9}, + [1131] = {.lex_state = 13, .external_lex_state = 9}, + [1132] = {.lex_state = 13, .external_lex_state = 9}, + [1133] = {.lex_state = 14, .external_lex_state = 12}, + [1134] = {.lex_state = 13, .external_lex_state = 9}, [1135] = {.lex_state = 13, .external_lex_state = 12}, [1136] = {.lex_state = 13, .external_lex_state = 12}, - [1137] = {.lex_state = 14, .external_lex_state = 14}, - [1138] = {.lex_state = 13, .external_lex_state = 12}, + [1137] = {.lex_state = 13, .external_lex_state = 12}, + [1138] = {.lex_state = 14, .external_lex_state = 13}, [1139] = {.lex_state = 13, .external_lex_state = 12}, - [1140] = {.lex_state = 13, .external_lex_state = 12}, - [1141] = {.lex_state = 13, .external_lex_state = 8}, + [1140] = {.lex_state = 13, .external_lex_state = 7}, + [1141] = {.lex_state = 13, .external_lex_state = 12}, [1142] = {.lex_state = 13, .external_lex_state = 12}, [1143] = {.lex_state = 13, .external_lex_state = 12}, - [1144] = {.lex_state = 13, .external_lex_state = 12}, - [1145] = {.lex_state = 14, .external_lex_state = 13}, - [1146] = {.lex_state = 14, .external_lex_state = 13}, - [1147] = {.lex_state = 14, .external_lex_state = 13}, + [1144] = {.lex_state = 14, .external_lex_state = 14}, + [1145] = {.lex_state = 14, .external_lex_state = 14}, + [1146] = {.lex_state = 13, .external_lex_state = 12}, + [1147] = {.lex_state = 13, .external_lex_state = 12}, [1148] = {.lex_state = 13, .external_lex_state = 12}, [1149] = {.lex_state = 13, .external_lex_state = 12}, - [1150] = {.lex_state = 13, .external_lex_state = 12}, - [1151] = {.lex_state = 13, .external_lex_state = 12}, - [1152] = {.lex_state = 13, .external_lex_state = 12}, - [1153] = {.lex_state = 13, .external_lex_state = 8}, - [1154] = {.lex_state = 13, .external_lex_state = 12}, - [1155] = {.lex_state = 13, .external_lex_state = 12}, + [1150] = {.lex_state = 14, .external_lex_state = 15}, + [1151] = {.lex_state = 14, .external_lex_state = 13}, + [1152] = {.lex_state = 14, .external_lex_state = 13}, + [1153] = {.lex_state = 14, .external_lex_state = 13}, + [1154] = {.lex_state = 14, .external_lex_state = 15}, + [1155] = {.lex_state = 14, .external_lex_state = 15}, [1156] = {.lex_state = 13, .external_lex_state = 12}, - [1157] = {.lex_state = 13, .external_lex_state = 12}, - [1158] = {.lex_state = 13, .external_lex_state = 12}, + [1157] = {.lex_state = 13, .external_lex_state = 13}, + [1158] = {.lex_state = 13, .external_lex_state = 13}, [1159] = {.lex_state = 13, .external_lex_state = 12}, [1160] = {.lex_state = 13, .external_lex_state = 12}, [1161] = {.lex_state = 13, .external_lex_state = 12}, @@ -8634,278 +8634,278 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1164] = {.lex_state = 13, .external_lex_state = 12}, [1165] = {.lex_state = 13, .external_lex_state = 12}, [1166] = {.lex_state = 13, .external_lex_state = 12}, - [1167] = {.lex_state = 13, .external_lex_state = 12}, - [1168] = {.lex_state = 13, .external_lex_state = 12}, - [1169] = {.lex_state = 13, .external_lex_state = 12}, + [1167] = {.lex_state = 14, .external_lex_state = 13}, + [1168] = {.lex_state = 14, .external_lex_state = 13}, + [1169] = {.lex_state = 14, .external_lex_state = 13}, [1170] = {.lex_state = 13, .external_lex_state = 12}, [1171] = {.lex_state = 13, .external_lex_state = 12}, [1172] = {.lex_state = 13, .external_lex_state = 12}, [1173] = {.lex_state = 13, .external_lex_state = 12}, - [1174] = {.lex_state = 14, .external_lex_state = 14}, - [1175] = {.lex_state = 14, .external_lex_state = 14}, - [1176] = {.lex_state = 14, .external_lex_state = 14}, + [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 = 12}, [1178] = {.lex_state = 13, .external_lex_state = 12}, [1179] = {.lex_state = 13, .external_lex_state = 12}, - [1180] = {.lex_state = 13, .external_lex_state = 2}, - [1181] = {.lex_state = 13, .external_lex_state = 12}, + [1180] = {.lex_state = 13, .external_lex_state = 12}, + [1181] = {.lex_state = 13, .external_lex_state = 7}, [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 = 14, .external_lex_state = 13}, - [1188] = {.lex_state = 13, .external_lex_state = 12}, + [1184] = {.lex_state = 14, .external_lex_state = 14}, + [1185] = {.lex_state = 13, .external_lex_state = 13}, + [1186] = {.lex_state = 13, .external_lex_state = 13}, + [1187] = {.lex_state = 13, .external_lex_state = 13}, + [1188] = {.lex_state = 13, .external_lex_state = 8}, [1189] = {.lex_state = 13, .external_lex_state = 12}, - [1190] = {.lex_state = 13, .external_lex_state = 12}, - [1191] = {.lex_state = 13, .external_lex_state = 12}, - [1192] = {.lex_state = 13, .external_lex_state = 12}, + [1190] = {.lex_state = 13, .external_lex_state = 14}, + [1191] = {.lex_state = 14, .external_lex_state = 14}, + [1192] = {.lex_state = 14, .external_lex_state = 14}, [1193] = {.lex_state = 13, .external_lex_state = 12}, - [1194] = {.lex_state = 13, .external_lex_state = 12}, - [1195] = {.lex_state = 13, .external_lex_state = 12}, + [1194] = {.lex_state = 14, .external_lex_state = 14}, + [1195] = {.lex_state = 13, .external_lex_state = 14}, [1196] = {.lex_state = 13, .external_lex_state = 12}, [1197] = {.lex_state = 13, .external_lex_state = 12}, - [1198] = {.lex_state = 13, .external_lex_state = 13}, + [1198] = {.lex_state = 14, .external_lex_state = 13}, [1199] = {.lex_state = 13, .external_lex_state = 12}, - [1200] = {.lex_state = 13, .external_lex_state = 13}, - [1201] = {.lex_state = 13, .external_lex_state = 12}, - [1202] = {.lex_state = 13, .external_lex_state = 12}, - [1203] = {.lex_state = 13, .external_lex_state = 12}, - [1204] = {.lex_state = 13, .external_lex_state = 12}, - [1205] = {.lex_state = 14, .external_lex_state = 13}, + [1200] = {.lex_state = 14, .external_lex_state = 14}, + [1201] = {.lex_state = 14, .external_lex_state = 13}, + [1202] = {.lex_state = 13, .external_lex_state = 2}, + [1203] = {.lex_state = 14, .external_lex_state = 13}, + [1204] = {.lex_state = 14, .external_lex_state = 14}, + [1205] = {.lex_state = 14, .external_lex_state = 14}, [1206] = {.lex_state = 13, .external_lex_state = 12}, - [1207] = {.lex_state = 13, .external_lex_state = 12}, + [1207] = {.lex_state = 13, .external_lex_state = 7}, [1208] = {.lex_state = 13, .external_lex_state = 12}, [1209] = {.lex_state = 13, .external_lex_state = 12}, [1210] = {.lex_state = 13, .external_lex_state = 12}, [1211] = {.lex_state = 13, .external_lex_state = 12}, - [1212] = {.lex_state = 13, .external_lex_state = 7}, + [1212] = {.lex_state = 13, .external_lex_state = 12}, [1213] = {.lex_state = 13, .external_lex_state = 12}, [1214] = {.lex_state = 13, .external_lex_state = 12}, - [1215] = {.lex_state = 13, .external_lex_state = 13}, - [1216] = {.lex_state = 14, .external_lex_state = 14}, - [1217] = {.lex_state = 13, .external_lex_state = 14}, - [1218] = {.lex_state = 13, .external_lex_state = 14}, - [1219] = {.lex_state = 14, .external_lex_state = 15}, - [1220] = {.lex_state = 13, .external_lex_state = 7}, - [1221] = {.lex_state = 13, .external_lex_state = 12}, + [1215] = {.lex_state = 13, .external_lex_state = 12}, + [1216] = {.lex_state = 13, .external_lex_state = 12}, + [1217] = {.lex_state = 13, .external_lex_state = 12}, + [1218] = {.lex_state = 13, .external_lex_state = 12}, + [1219] = {.lex_state = 13, .external_lex_state = 12}, + [1220] = {.lex_state = 14, .external_lex_state = 14}, + [1221] = {.lex_state = 13, .external_lex_state = 13}, [1222] = {.lex_state = 13, .external_lex_state = 12}, - [1223] = {.lex_state = 13, .external_lex_state = 14}, - [1224] = {.lex_state = 13, .external_lex_state = 14}, - [1225] = {.lex_state = 13, .external_lex_state = 14}, - [1226] = {.lex_state = 13, .external_lex_state = 14}, - [1227] = {.lex_state = 13, .external_lex_state = 14}, - [1228] = {.lex_state = 13, .external_lex_state = 14}, + [1223] = {.lex_state = 13, .external_lex_state = 13}, + [1224] = {.lex_state = 13, .external_lex_state = 12}, + [1225] = {.lex_state = 13, .external_lex_state = 12}, + [1226] = {.lex_state = 13, .external_lex_state = 12}, + [1227] = {.lex_state = 13, .external_lex_state = 12}, + [1228] = {.lex_state = 13, .external_lex_state = 12}, [1229] = {.lex_state = 13, .external_lex_state = 14}, [1230] = {.lex_state = 13, .external_lex_state = 14}, - [1231] = {.lex_state = 13, .external_lex_state = 12}, - [1232] = {.lex_state = 13, .external_lex_state = 12}, + [1231] = {.lex_state = 13, .external_lex_state = 14}, + [1232] = {.lex_state = 13, .external_lex_state = 14}, [1233] = {.lex_state = 13, .external_lex_state = 12}, - [1234] = {.lex_state = 14, .external_lex_state = 13}, - [1235] = {.lex_state = 14, .external_lex_state = 13}, - [1236] = {.lex_state = 13, .external_lex_state = 13}, - [1237] = {.lex_state = 14, .external_lex_state = 13}, - [1238] = {.lex_state = 13, .external_lex_state = 7}, - [1239] = {.lex_state = 14, .external_lex_state = 14}, - [1240] = {.lex_state = 14, .external_lex_state = 14}, - [1241] = {.lex_state = 14, .external_lex_state = 15}, + [1234] = {.lex_state = 13, .external_lex_state = 14}, + [1235] = {.lex_state = 13, .external_lex_state = 14}, + [1236] = {.lex_state = 13, .external_lex_state = 14}, + [1237] = {.lex_state = 13, .external_lex_state = 14}, + [1238] = {.lex_state = 13, .external_lex_state = 8}, + [1239] = {.lex_state = 13, .external_lex_state = 12}, + [1240] = {.lex_state = 13, .external_lex_state = 12}, + [1241] = {.lex_state = 13, .external_lex_state = 12}, [1242] = {.lex_state = 14, .external_lex_state = 15}, - [1243] = {.lex_state = 14, .external_lex_state = 15}, - [1244] = {.lex_state = 14, .external_lex_state = 13}, - [1245] = {.lex_state = 13, .external_lex_state = 7}, - [1246] = {.lex_state = 14, .external_lex_state = 14}, - [1247] = {.lex_state = 14, .external_lex_state = 14}, - [1248] = {.lex_state = 14, .external_lex_state = 14}, - [1249] = {.lex_state = 14, .external_lex_state = 13}, - [1250] = {.lex_state = 14, .external_lex_state = 13}, - [1251] = {.lex_state = 13, .external_lex_state = 13}, - [1252] = {.lex_state = 13, .external_lex_state = 13}, + [1243] = {.lex_state = 13, .external_lex_state = 12}, + [1244] = {.lex_state = 13, .external_lex_state = 12}, + [1245] = {.lex_state = 13, .external_lex_state = 12}, + [1246] = {.lex_state = 13, .external_lex_state = 12}, + [1247] = {.lex_state = 14, .external_lex_state = 13}, + [1248] = {.lex_state = 14, .external_lex_state = 13}, + [1249] = {.lex_state = 13, .external_lex_state = 12}, + [1250] = {.lex_state = 13, .external_lex_state = 12}, + [1251] = {.lex_state = 13, .external_lex_state = 12}, + [1252] = {.lex_state = 13, .external_lex_state = 12}, [1253] = {.lex_state = 13, .external_lex_state = 2}, - [1254] = {.lex_state = 14, .external_lex_state = 13}, - [1255] = {.lex_state = 13, .external_lex_state = 13}, - [1256] = {.lex_state = 13, .external_lex_state = 14}, - [1257] = {.lex_state = 13, .external_lex_state = 14}, - [1258] = {.lex_state = 13, .external_lex_state = 13}, - [1259] = {.lex_state = 13, .external_lex_state = 13}, - [1260] = {.lex_state = 13, .external_lex_state = 15}, + [1254] = {.lex_state = 13, .external_lex_state = 12}, + [1255] = {.lex_state = 13, .external_lex_state = 7}, + [1256] = {.lex_state = 13, .external_lex_state = 13}, + [1257] = {.lex_state = 13, .external_lex_state = 13}, + [1258] = {.lex_state = 13, .external_lex_state = 15}, + [1259] = {.lex_state = 13, .external_lex_state = 9}, + [1260] = {.lex_state = 13, .external_lex_state = 13}, [1261] = {.lex_state = 13, .external_lex_state = 13}, - [1262] = {.lex_state = 13, .external_lex_state = 14}, - [1263] = {.lex_state = 13, .external_lex_state = 14}, - [1264] = {.lex_state = 13, .external_lex_state = 14}, + [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 = 15}, - [1266] = {.lex_state = 13, .external_lex_state = 15}, + [1266] = {.lex_state = 13, .external_lex_state = 13}, [1267] = {.lex_state = 13, .external_lex_state = 14}, - [1268] = {.lex_state = 13, .external_lex_state = 15}, + [1268] = {.lex_state = 13, .external_lex_state = 13}, [1269] = {.lex_state = 13, .external_lex_state = 15}, [1270] = {.lex_state = 13, .external_lex_state = 13}, [1271] = {.lex_state = 13, .external_lex_state = 15}, [1272] = {.lex_state = 13, .external_lex_state = 13}, - [1273] = {.lex_state = 13, .external_lex_state = 13}, - [1274] = {.lex_state = 14, .external_lex_state = 14}, - [1275] = {.lex_state = 14, .external_lex_state = 14}, - [1276] = {.lex_state = 14, .external_lex_state = 14}, - [1277] = {.lex_state = 13, .external_lex_state = 13}, - [1278] = {.lex_state = 13, .external_lex_state = 13}, - [1279] = {.lex_state = 13, .external_lex_state = 13}, - [1280] = {.lex_state = 13, .external_lex_state = 13}, + [1273] = {.lex_state = 13, .external_lex_state = 15}, + [1274] = {.lex_state = 13, .external_lex_state = 13}, + [1275] = {.lex_state = 13, .external_lex_state = 14}, + [1276] = {.lex_state = 13, .external_lex_state = 13}, + [1277] = {.lex_state = 14, .external_lex_state = 13}, + [1278] = {.lex_state = 14, .external_lex_state = 13}, + [1279] = {.lex_state = 14, .external_lex_state = 13}, + [1280] = {.lex_state = 13, .external_lex_state = 15}, [1281] = {.lex_state = 13, .external_lex_state = 15}, - [1282] = {.lex_state = 13, .external_lex_state = 13}, - [1283] = {.lex_state = 13, .external_lex_state = 15}, + [1282] = {.lex_state = 13, .external_lex_state = 15}, + [1283] = {.lex_state = 13, .external_lex_state = 14}, [1284] = {.lex_state = 13, .external_lex_state = 13}, - [1285] = {.lex_state = 13, .external_lex_state = 13}, + [1285] = {.lex_state = 13, .external_lex_state = 14}, [1286] = {.lex_state = 13, .external_lex_state = 13}, - [1287] = {.lex_state = 13, .external_lex_state = 13}, - [1288] = {.lex_state = 13, .external_lex_state = 13}, - [1289] = {.lex_state = 13, .external_lex_state = 13}, - [1290] = {.lex_state = 13, .external_lex_state = 13}, + [1287] = {.lex_state = 13, .external_lex_state = 14}, + [1288] = {.lex_state = 13, .external_lex_state = 14}, + [1289] = {.lex_state = 13, .external_lex_state = 14}, + [1290] = {.lex_state = 13, .external_lex_state = 14}, [1291] = {.lex_state = 13, .external_lex_state = 15}, [1292] = {.lex_state = 13, .external_lex_state = 15}, [1293] = {.lex_state = 13, .external_lex_state = 15}, [1294] = {.lex_state = 13, .external_lex_state = 15}, - [1295] = {.lex_state = 13, .external_lex_state = 15}, - [1296] = {.lex_state = 13, .external_lex_state = 13}, - [1297] = {.lex_state = 13, .external_lex_state = 15}, - [1298] = {.lex_state = 13, .external_lex_state = 15}, + [1295] = {.lex_state = 13, .external_lex_state = 14}, + [1296] = {.lex_state = 13, .external_lex_state = 14}, + [1297] = {.lex_state = 13, .external_lex_state = 14}, + [1298] = {.lex_state = 8, .external_lex_state = 9}, [1299] = {.lex_state = 13, .external_lex_state = 13}, - [1300] = {.lex_state = 13, .external_lex_state = 13}, + [1300] = {.lex_state = 13, .external_lex_state = 15}, [1301] = {.lex_state = 13, .external_lex_state = 13}, - [1302] = {.lex_state = 13, .external_lex_state = 13}, + [1302] = {.lex_state = 8, .external_lex_state = 9}, [1303] = {.lex_state = 13, .external_lex_state = 13}, - [1304] = {.lex_state = 13, .external_lex_state = 13}, - [1305] = {.lex_state = 13, .external_lex_state = 13}, - [1306] = {.lex_state = 13, .external_lex_state = 15}, - [1307] = {.lex_state = 13, .external_lex_state = 13}, - [1308] = {.lex_state = 13, .external_lex_state = 13}, - [1309] = {.lex_state = 13, .external_lex_state = 13}, + [1304] = {.lex_state = 13, .external_lex_state = 15}, + [1305] = {.lex_state = 8, .external_lex_state = 9}, + [1306] = {.lex_state = 8, .external_lex_state = 9}, + [1307] = {.lex_state = 13, .external_lex_state = 14}, + [1308] = {.lex_state = 13, .external_lex_state = 15}, + [1309] = {.lex_state = 13, .external_lex_state = 15}, [1310] = {.lex_state = 13, .external_lex_state = 15}, [1311] = {.lex_state = 13, .external_lex_state = 14}, - [1312] = {.lex_state = 13, .external_lex_state = 15}, - [1313] = {.lex_state = 13, .external_lex_state = 13}, - [1314] = {.lex_state = 13, .external_lex_state = 13}, - [1315] = {.lex_state = 13, .external_lex_state = 14}, - [1316] = {.lex_state = 13, .external_lex_state = 15}, - [1317] = {.lex_state = 13, .external_lex_state = 15}, + [1312] = {.lex_state = 13, .external_lex_state = 14}, + [1313] = {.lex_state = 13, .external_lex_state = 15}, + [1314] = {.lex_state = 13, .external_lex_state = 14}, + [1315] = {.lex_state = 13, .external_lex_state = 8}, + [1316] = {.lex_state = 13, .external_lex_state = 13}, + [1317] = {.lex_state = 13, .external_lex_state = 13}, [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 = 13}, - [1322] = {.lex_state = 13, .external_lex_state = 14}, - [1323] = {.lex_state = 13, .external_lex_state = 14}, - [1324] = {.lex_state = 13, .external_lex_state = 14}, - [1325] = {.lex_state = 13, .external_lex_state = 14}, - [1326] = {.lex_state = 13, .external_lex_state = 14}, + [1320] = {.lex_state = 13, .external_lex_state = 15}, + [1321] = {.lex_state = 13, .external_lex_state = 15}, + [1322] = {.lex_state = 13, .external_lex_state = 15}, + [1323] = {.lex_state = 13, .external_lex_state = 15}, + [1324] = {.lex_state = 13, .external_lex_state = 13}, + [1325] = {.lex_state = 13, .external_lex_state = 8}, + [1326] = {.lex_state = 8, .external_lex_state = 9}, [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}, + [1329] = {.lex_state = 13, .external_lex_state = 15}, + [1330] = {.lex_state = 13, .external_lex_state = 13}, [1331] = {.lex_state = 13, .external_lex_state = 13}, [1332] = {.lex_state = 13, .external_lex_state = 14}, [1333] = {.lex_state = 13, .external_lex_state = 14}, - [1334] = {.lex_state = 13, .external_lex_state = 14}, - [1335] = {.lex_state = 13, .external_lex_state = 14}, - [1336] = {.lex_state = 13, .external_lex_state = 14}, - [1337] = {.lex_state = 13, .external_lex_state = 14}, + [1334] = {.lex_state = 13, .external_lex_state = 15}, + [1335] = {.lex_state = 13, .external_lex_state = 13}, + [1336] = {.lex_state = 13, .external_lex_state = 15}, + [1337] = {.lex_state = 13, .external_lex_state = 15}, [1338] = {.lex_state = 13, .external_lex_state = 13}, - [1339] = {.lex_state = 13, .external_lex_state = 13}, - [1340] = {.lex_state = 13, .external_lex_state = 15}, - [1341] = {.lex_state = 13, .external_lex_state = 13}, - [1342] = {.lex_state = 13, .external_lex_state = 15}, - [1343] = {.lex_state = 13, .external_lex_state = 13}, + [1339] = {.lex_state = 13, .external_lex_state = 15}, + [1340] = {.lex_state = 13, .external_lex_state = 13}, + [1341] = {.lex_state = 13, .external_lex_state = 15}, + [1342] = {.lex_state = 8, .external_lex_state = 9}, + [1343] = {.lex_state = 13, .external_lex_state = 14}, [1344] = {.lex_state = 13, .external_lex_state = 13}, - [1345] = {.lex_state = 13, .external_lex_state = 13}, - [1346] = {.lex_state = 13, .external_lex_state = 13}, - [1347] = {.lex_state = 13, .external_lex_state = 8}, - [1348] = {.lex_state = 13, .external_lex_state = 14}, - [1349] = {.lex_state = 13, .external_lex_state = 14}, - [1350] = {.lex_state = 13, .external_lex_state = 13}, - [1351] = {.lex_state = 13, .external_lex_state = 8}, - [1352] = {.lex_state = 8, .external_lex_state = 9}, - [1353] = {.lex_state = 8, .external_lex_state = 9}, - [1354] = {.lex_state = 8, .external_lex_state = 9}, + [1345] = {.lex_state = 13, .external_lex_state = 14}, + [1346] = {.lex_state = 13, .external_lex_state = 14}, + [1347] = {.lex_state = 13, .external_lex_state = 14}, + [1348] = {.lex_state = 13, .external_lex_state = 13}, + [1349] = {.lex_state = 13, .external_lex_state = 13}, + [1350] = {.lex_state = 13, .external_lex_state = 15}, + [1351] = {.lex_state = 13, .external_lex_state = 15}, + [1352] = {.lex_state = 13, .external_lex_state = 13}, + [1353] = {.lex_state = 13, .external_lex_state = 13}, + [1354] = {.lex_state = 13, .external_lex_state = 14}, [1355] = {.lex_state = 13, .external_lex_state = 13}, - [1356] = {.lex_state = 13, .external_lex_state = 15}, - [1357] = {.lex_state = 13, .external_lex_state = 13}, - [1358] = {.lex_state = 8, .external_lex_state = 9}, + [1356] = {.lex_state = 13, .external_lex_state = 14}, + [1357] = {.lex_state = 13, .external_lex_state = 15}, + [1358] = {.lex_state = 13, .external_lex_state = 14}, [1359] = {.lex_state = 13, .external_lex_state = 14}, - [1360] = {.lex_state = 13, .external_lex_state = 14}, - [1361] = {.lex_state = 13, .external_lex_state = 15}, - [1362] = {.lex_state = 13, .external_lex_state = 15}, - [1363] = {.lex_state = 13, .external_lex_state = 15}, - [1364] = {.lex_state = 13, .external_lex_state = 15}, + [1360] = {.lex_state = 13, .external_lex_state = 13}, + [1361] = {.lex_state = 13, .external_lex_state = 13}, + [1362] = {.lex_state = 13, .external_lex_state = 13}, + [1363] = {.lex_state = 13, .external_lex_state = 13}, + [1364] = {.lex_state = 13, .external_lex_state = 13}, [1365] = {.lex_state = 13, .external_lex_state = 14}, [1366] = {.lex_state = 13, .external_lex_state = 14}, - [1367] = {.lex_state = 13, .external_lex_state = 13}, - [1368] = {.lex_state = 8, .external_lex_state = 9}, - [1369] = {.lex_state = 13, .external_lex_state = 13}, - [1370] = {.lex_state = 13, .external_lex_state = 13}, - [1371] = {.lex_state = 8, .external_lex_state = 9}, + [1367] = {.lex_state = 13, .external_lex_state = 14}, + [1368] = {.lex_state = 13, .external_lex_state = 13}, + [1369] = {.lex_state = 13, .external_lex_state = 15}, + [1370] = {.lex_state = 13, .external_lex_state = 15}, + [1371] = {.lex_state = 13, .external_lex_state = 13}, [1372] = {.lex_state = 13, .external_lex_state = 13}, - [1373] = {.lex_state = 13, .external_lex_state = 14}, - [1374] = {.lex_state = 13, .external_lex_state = 15}, - [1375] = {.lex_state = 13, .external_lex_state = 15}, - [1376] = {.lex_state = 13, .external_lex_state = 15}, + [1373] = {.lex_state = 13, .external_lex_state = 13}, + [1374] = {.lex_state = 13, .external_lex_state = 13}, + [1375] = {.lex_state = 13, .external_lex_state = 14}, + [1376] = {.lex_state = 13, .external_lex_state = 14}, [1377] = {.lex_state = 13, .external_lex_state = 13}, - [1378] = {.lex_state = 13, .external_lex_state = 14}, - [1379] = {.lex_state = 13, .external_lex_state = 15}, - [1380] = {.lex_state = 13, .external_lex_state = 15}, - [1381] = {.lex_state = 13, .external_lex_state = 14}, + [1378] = {.lex_state = 13, .external_lex_state = 13}, + [1379] = {.lex_state = 13, .external_lex_state = 14}, + [1380] = {.lex_state = 13, .external_lex_state = 13}, + [1381] = {.lex_state = 13, .external_lex_state = 13}, [1382] = {.lex_state = 13, .external_lex_state = 13}, - [1383] = {.lex_state = 13, .external_lex_state = 13}, + [1383] = {.lex_state = 13, .external_lex_state = 15}, [1384] = {.lex_state = 13, .external_lex_state = 13}, - [1385] = {.lex_state = 13, .external_lex_state = 14}, + [1385] = {.lex_state = 13, .external_lex_state = 13}, [1386] = {.lex_state = 13, .external_lex_state = 13}, - [1387] = {.lex_state = 13, .external_lex_state = 15}, + [1387] = {.lex_state = 14, .external_lex_state = 14}, [1388] = {.lex_state = 13, .external_lex_state = 13}, [1389] = {.lex_state = 13, .external_lex_state = 13}, [1390] = {.lex_state = 13, .external_lex_state = 13}, [1391] = {.lex_state = 13, .external_lex_state = 13}, - [1392] = {.lex_state = 13, .external_lex_state = 13}, - [1393] = {.lex_state = 13, .external_lex_state = 9}, + [1392] = {.lex_state = 14, .external_lex_state = 14}, + [1393] = {.lex_state = 13, .external_lex_state = 13}, [1394] = {.lex_state = 13, .external_lex_state = 13}, [1395] = {.lex_state = 13, .external_lex_state = 13}, - [1396] = {.lex_state = 13, .external_lex_state = 13}, - [1397] = {.lex_state = 13, .external_lex_state = 14}, + [1396] = {.lex_state = 14, .external_lex_state = 14}, + [1397] = {.lex_state = 13, .external_lex_state = 13}, [1398] = {.lex_state = 13, .external_lex_state = 13}, - [1399] = {.lex_state = 14, .external_lex_state = 13}, - [1400] = {.lex_state = 14, .external_lex_state = 13}, - [1401] = {.lex_state = 14, .external_lex_state = 13}, + [1399] = {.lex_state = 13, .external_lex_state = 13}, + [1400] = {.lex_state = 13, .external_lex_state = 14}, + [1401] = {.lex_state = 13, .external_lex_state = 14}, [1402] = {.lex_state = 13, .external_lex_state = 14}, - [1403] = {.lex_state = 13, .external_lex_state = 15}, + [1403] = {.lex_state = 13, .external_lex_state = 14}, [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 = 13}, + [1405] = {.lex_state = 13, .external_lex_state = 13}, + [1406] = {.lex_state = 13, .external_lex_state = 13}, + [1407] = {.lex_state = 13, .external_lex_state = 13}, + [1408] = {.lex_state = 13, .external_lex_state = 13}, + [1409] = {.lex_state = 13, .external_lex_state = 14}, [1410] = {.lex_state = 13, .external_lex_state = 13}, - [1411] = {.lex_state = 13, .external_lex_state = 13}, + [1411] = {.lex_state = 13, .external_lex_state = 14}, [1412] = {.lex_state = 13, .external_lex_state = 13}, [1413] = {.lex_state = 13, .external_lex_state = 13}, [1414] = {.lex_state = 13, .external_lex_state = 13}, - [1415] = {.lex_state = 13, .external_lex_state = 13}, + [1415] = {.lex_state = 13, .external_lex_state = 14}, [1416] = {.lex_state = 13, .external_lex_state = 13}, [1417] = {.lex_state = 13, .external_lex_state = 13}, [1418] = {.lex_state = 13, .external_lex_state = 13}, - [1419] = {.lex_state = 14, .external_lex_state = 13}, - [1420] = {.lex_state = 13, .external_lex_state = 15}, + [1419] = {.lex_state = 13, .external_lex_state = 14}, + [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 = 14}, - [1424] = {.lex_state = 13, .external_lex_state = 14}, - [1425] = {.lex_state = 13, .external_lex_state = 14}, + [1422] = {.lex_state = 14, .external_lex_state = 14}, + [1423] = {.lex_state = 14, .external_lex_state = 14}, + [1424] = {.lex_state = 14, .external_lex_state = 14}, + [1425] = {.lex_state = 14, .external_lex_state = 12}, [1426] = {.lex_state = 13, .external_lex_state = 14}, - [1427] = {.lex_state = 13, .external_lex_state = 14}, - [1428] = {.lex_state = 13, .external_lex_state = 14}, + [1427] = {.lex_state = 14, .external_lex_state = 12}, + [1428] = {.lex_state = 14, .external_lex_state = 12}, [1429] = {.lex_state = 13, .external_lex_state = 14}, - [1430] = {.lex_state = 14, .external_lex_state = 13}, + [1430] = {.lex_state = 13, .external_lex_state = 14}, [1431] = {.lex_state = 13, .external_lex_state = 14}, [1432] = {.lex_state = 13, .external_lex_state = 14}, - [1433] = {.lex_state = 14, .external_lex_state = 12}, - [1434] = {.lex_state = 14, .external_lex_state = 12}, - [1435] = {.lex_state = 14, .external_lex_state = 12}, - [1436] = {.lex_state = 14, .external_lex_state = 14}, + [1433] = {.lex_state = 13, .external_lex_state = 14}, + [1434] = {.lex_state = 13, .external_lex_state = 14}, + [1435] = {.lex_state = 13, .external_lex_state = 14}, + [1436] = {.lex_state = 13, .external_lex_state = 15}, [1437] = {.lex_state = 13, .external_lex_state = 14}, - [1438] = {.lex_state = 14, .external_lex_state = 14}, + [1438] = {.lex_state = 13, .external_lex_state = 14}, [1439] = {.lex_state = 13, .external_lex_state = 14}, [1440] = {.lex_state = 13, .external_lex_state = 14}, [1441] = {.lex_state = 13, .external_lex_state = 14}, @@ -8930,8 +8930,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1460] = {.lex_state = 13, .external_lex_state = 14}, [1461] = {.lex_state = 13, .external_lex_state = 14}, [1462] = {.lex_state = 13, .external_lex_state = 14}, - [1463] = {.lex_state = 13, .external_lex_state = 14}, - [1464] = {.lex_state = 14, .external_lex_state = 14}, + [1463] = {.lex_state = 14, .external_lex_state = 13}, + [1464] = {.lex_state = 14, .external_lex_state = 13}, [1465] = {.lex_state = 14, .external_lex_state = 13}, [1466] = {.lex_state = 8, .external_lex_state = 15}, [1467] = {.lex_state = 8, .external_lex_state = 15}, @@ -8944,52 +8944,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1474] = {.lex_state = 8, .external_lex_state = 15}, [1475] = {.lex_state = 8, .external_lex_state = 15}, [1476] = {.lex_state = 8, .external_lex_state = 15}, - [1477] = {.lex_state = 13, .external_lex_state = 13}, - [1478] = {.lex_state = 13, .external_lex_state = 14}, - [1479] = {.lex_state = 13, .external_lex_state = 12}, + [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 = 8, .external_lex_state = 15}, - [1482] = {.lex_state = 8, .external_lex_state = 15}, - [1483] = {.lex_state = 8, .external_lex_state = 15}, - [1484] = {.lex_state = 8, .external_lex_state = 15}, + [1482] = {.lex_state = 13, .external_lex_state = 13}, + [1483] = {.lex_state = 13, .external_lex_state = 14}, + [1484] = {.lex_state = 13, .external_lex_state = 12}, [1485] = {.lex_state = 12, .external_lex_state = 2}, [1486] = {.lex_state = 12, .external_lex_state = 2}, - [1487] = {.lex_state = 5, .external_lex_state = 8}, - [1488] = {.lex_state = 5, .external_lex_state = 8}, + [1487] = {.lex_state = 5, .external_lex_state = 7}, + [1488] = {.lex_state = 5, .external_lex_state = 7}, [1489] = {.lex_state = 5, .external_lex_state = 7}, - [1490] = {.lex_state = 5, .external_lex_state = 7}, + [1490] = {.lex_state = 5, .external_lex_state = 8}, [1491] = {.lex_state = 5, .external_lex_state = 7}, - [1492] = {.lex_state = 5, .external_lex_state = 8}, + [1492] = {.lex_state = 5, .external_lex_state = 7}, [1493] = {.lex_state = 5, .external_lex_state = 7}, - [1494] = {.lex_state = 5, .external_lex_state = 7}, - [1495] = {.lex_state = 5, .external_lex_state = 8}, + [1494] = {.lex_state = 5, .external_lex_state = 8}, + [1495] = {.lex_state = 5, .external_lex_state = 7}, [1496] = {.lex_state = 5, .external_lex_state = 7}, [1497] = {.lex_state = 5, .external_lex_state = 7}, [1498] = {.lex_state = 5, .external_lex_state = 8}, - [1499] = {.lex_state = 5, .external_lex_state = 7}, + [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 = 7}, + [1502] = {.lex_state = 5, .external_lex_state = 8}, [1503] = {.lex_state = 5, .external_lex_state = 7}, [1504] = {.lex_state = 5, .external_lex_state = 7}, - [1505] = {.lex_state = 5, .external_lex_state = 8}, + [1505] = {.lex_state = 5, .external_lex_state = 7}, [1506] = {.lex_state = 5, .external_lex_state = 7}, [1507] = {.lex_state = 5, .external_lex_state = 7}, [1508] = {.lex_state = 5, .external_lex_state = 7}, - [1509] = {.lex_state = 5, .external_lex_state = 7}, + [1509] = {.lex_state = 5, .external_lex_state = 8}, [1510] = {.lex_state = 5, .external_lex_state = 8}, - [1511] = {.lex_state = 5, .external_lex_state = 7}, + [1511] = {.lex_state = 5, .external_lex_state = 8}, [1512] = {.lex_state = 5, .external_lex_state = 7}, - [1513] = {.lex_state = 5, .external_lex_state = 8}, - [1514] = {.lex_state = 5, .external_lex_state = 7}, - [1515] = {.lex_state = 5, .external_lex_state = 7}, + [1513] = {.lex_state = 5, .external_lex_state = 7}, + [1514] = {.lex_state = 5, .external_lex_state = 8}, + [1515] = {.lex_state = 5, .external_lex_state = 8}, [1516] = {.lex_state = 5, .external_lex_state = 7}, [1517] = {.lex_state = 5, .external_lex_state = 7}, - [1518] = {.lex_state = 5, .external_lex_state = 7}, + [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}, + [1520] = {.lex_state = 5, .external_lex_state = 7}, + [1521] = {.lex_state = 5, .external_lex_state = 7}, + [1522] = {.lex_state = 5, .external_lex_state = 7}, [1523] = {.lex_state = 5, .external_lex_state = 2}, [1524] = {.lex_state = 5, .external_lex_state = 2}, [1525] = {.lex_state = 5, .external_lex_state = 2}, @@ -9020,9 +9020,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1550] = {.lex_state = 5, .external_lex_state = 2}, [1551] = {.lex_state = 5, .external_lex_state = 2}, [1552] = {.lex_state = 5, .external_lex_state = 2}, - [1553] = {.lex_state = 5, .external_lex_state = 2}, + [1553] = {.lex_state = 8, .external_lex_state = 9}, [1554] = {.lex_state = 8, .external_lex_state = 9}, - [1555] = {.lex_state = 8, .external_lex_state = 9}, + [1555] = {.lex_state = 5, .external_lex_state = 2}, [1556] = {.lex_state = 5, .external_lex_state = 2}, [1557] = {.lex_state = 5, .external_lex_state = 2}, [1558] = {.lex_state = 5, .external_lex_state = 2}, @@ -9030,1226 +9030,1226 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1560] = {.lex_state = 8, .external_lex_state = 15}, [1561] = {.lex_state = 8, .external_lex_state = 15}, [1562] = {.lex_state = 8, .external_lex_state = 13}, - [1563] = {.lex_state = 8, .external_lex_state = 14}, - [1564] = {.lex_state = 52, .external_lex_state = 12}, + [1563] = {.lex_state = 52, .external_lex_state = 12}, + [1564] = {.lex_state = 8, .external_lex_state = 14}, [1565] = {.lex_state = 52, .external_lex_state = 12}, [1566] = {.lex_state = 8, .external_lex_state = 14}, [1567] = {.lex_state = 52, .external_lex_state = 12}, [1568] = {.lex_state = 52, .external_lex_state = 12}, - [1569] = {.lex_state = 52, .external_lex_state = 2}, - [1570] = {.lex_state = 13, .external_lex_state = 12}, - [1571] = {.lex_state = 52, .external_lex_state = 13}, - [1572] = {.lex_state = 52, .external_lex_state = 14}, - [1573] = {.lex_state = 52, .external_lex_state = 2}, + [1569] = {.lex_state = 52, .external_lex_state = 13}, + [1570] = {.lex_state = 52, .external_lex_state = 14}, + [1571] = {.lex_state = 52, .external_lex_state = 2}, + [1572] = {.lex_state = 13, .external_lex_state = 12}, + [1573] = {.lex_state = 13, .external_lex_state = 12}, [1574] = {.lex_state = 13, .external_lex_state = 12}, - [1575] = {.lex_state = 52, .external_lex_state = 13}, + [1575] = {.lex_state = 13, .external_lex_state = 12}, [1576] = {.lex_state = 13, .external_lex_state = 12}, [1577] = {.lex_state = 13, .external_lex_state = 12}, - [1578] = {.lex_state = 13, .external_lex_state = 12}, + [1578] = {.lex_state = 52, .external_lex_state = 2}, [1579] = {.lex_state = 52, .external_lex_state = 14}, - [1580] = {.lex_state = 13, .external_lex_state = 12}, + [1580] = {.lex_state = 52, .external_lex_state = 13}, [1581] = {.lex_state = 13, .external_lex_state = 13}, [1582] = {.lex_state = 13, .external_lex_state = 13}, - [1583] = {.lex_state = 13, .external_lex_state = 13}, - [1584] = {.lex_state = 11, .external_lex_state = 9}, + [1583] = {.lex_state = 11, .external_lex_state = 9}, + [1584] = {.lex_state = 13, .external_lex_state = 13}, [1585] = {.lex_state = 13, .external_lex_state = 13}, [1586] = {.lex_state = 13, .external_lex_state = 13}, - [1587] = {.lex_state = 11, .external_lex_state = 9}, - [1588] = {.lex_state = 13, .external_lex_state = 13}, - [1589] = {.lex_state = 13, .external_lex_state = 15}, - [1590] = {.lex_state = 13, .external_lex_state = 13}, - [1591] = {.lex_state = 13, .external_lex_state = 15}, - [1592] = {.lex_state = 11, .external_lex_state = 9}, + [1587] = {.lex_state = 13, .external_lex_state = 13}, + [1588] = {.lex_state = 11, .external_lex_state = 9}, + [1589] = {.lex_state = 13, .external_lex_state = 14}, + [1590] = {.lex_state = 13, .external_lex_state = 14}, + [1591] = {.lex_state = 13, .external_lex_state = 14}, + [1592] = {.lex_state = 13, .external_lex_state = 15}, [1593] = {.lex_state = 13, .external_lex_state = 15}, - [1594] = {.lex_state = 13, .external_lex_state = 14}, - [1595] = {.lex_state = 13, .external_lex_state = 14}, - [1596] = {.lex_state = 13, .external_lex_state = 14}, - [1597] = {.lex_state = 13, .external_lex_state = 14}, - [1598] = {.lex_state = 13, .external_lex_state = 13}, - [1599] = {.lex_state = 13, .external_lex_state = 13}, + [1594] = {.lex_state = 13, .external_lex_state = 15}, + [1595] = {.lex_state = 13, .external_lex_state = 15}, + [1596] = {.lex_state = 13, .external_lex_state = 15}, + [1597] = {.lex_state = 13, .external_lex_state = 15}, + [1598] = {.lex_state = 13, .external_lex_state = 15}, + [1599] = {.lex_state = 13, .external_lex_state = 15}, [1600] = {.lex_state = 13, .external_lex_state = 13}, [1601] = {.lex_state = 13, .external_lex_state = 13}, - [1602] = {.lex_state = 13, .external_lex_state = 13}, - [1603] = {.lex_state = 13, .external_lex_state = 15}, - [1604] = {.lex_state = 11, .external_lex_state = 9}, - [1605] = {.lex_state = 13, .external_lex_state = 15}, - [1606] = {.lex_state = 13, .external_lex_state = 14}, - [1607] = {.lex_state = 13, .external_lex_state = 15}, - [1608] = {.lex_state = 13, .external_lex_state = 15}, + [1602] = {.lex_state = 11, .external_lex_state = 9}, + [1603] = {.lex_state = 13, .external_lex_state = 14}, + [1604] = {.lex_state = 13, .external_lex_state = 15}, + [1605] = {.lex_state = 13, .external_lex_state = 14}, + [1606] = {.lex_state = 13, .external_lex_state = 15}, + [1607] = {.lex_state = 13, .external_lex_state = 14}, + [1608] = {.lex_state = 13, .external_lex_state = 13}, [1609] = {.lex_state = 13, .external_lex_state = 15}, - [1610] = {.lex_state = 11, .external_lex_state = 9}, + [1610] = {.lex_state = 13, .external_lex_state = 13}, [1611] = {.lex_state = 13, .external_lex_state = 15}, - [1612] = {.lex_state = 13, .external_lex_state = 15}, + [1612] = {.lex_state = 13, .external_lex_state = 13}, [1613] = {.lex_state = 13, .external_lex_state = 15}, - [1614] = {.lex_state = 13, .external_lex_state = 15}, + [1614] = {.lex_state = 13, .external_lex_state = 13}, [1615] = {.lex_state = 13, .external_lex_state = 15}, [1616] = {.lex_state = 13, .external_lex_state = 15}, [1617] = {.lex_state = 13, .external_lex_state = 15}, - [1618] = {.lex_state = 13, .external_lex_state = 15}, + [1618] = {.lex_state = 11, .external_lex_state = 9}, [1619] = {.lex_state = 13, .external_lex_state = 15}, - [1620] = {.lex_state = 13, .external_lex_state = 15}, - [1621] = {.lex_state = 13, .external_lex_state = 14}, + [1620] = {.lex_state = 11, .external_lex_state = 9}, + [1621] = {.lex_state = 13, .external_lex_state = 15}, [1622] = {.lex_state = 13, .external_lex_state = 15}, [1623] = {.lex_state = 13, .external_lex_state = 15}, - [1624] = {.lex_state = 13, .external_lex_state = 15}, + [1624] = {.lex_state = 11, .external_lex_state = 9}, [1625] = {.lex_state = 13, .external_lex_state = 15}, - [1626] = {.lex_state = 11, .external_lex_state = 9}, + [1626] = {.lex_state = 13, .external_lex_state = 15}, [1627] = {.lex_state = 11, .external_lex_state = 15}, [1628] = {.lex_state = 12, .external_lex_state = 15}, - [1629] = {.lex_state = 12, .external_lex_state = 15}, - [1630] = {.lex_state = 11, .external_lex_state = 9}, + [1629] = {.lex_state = 11, .external_lex_state = 15}, + [1630] = {.lex_state = 12, .external_lex_state = 15}, [1631] = {.lex_state = 12, .external_lex_state = 15}, - [1632] = {.lex_state = 11, .external_lex_state = 15}, + [1632] = {.lex_state = 12, .external_lex_state = 15}, [1633] = {.lex_state = 12, .external_lex_state = 15}, [1634] = {.lex_state = 11, .external_lex_state = 15}, - [1635] = {.lex_state = 12, .external_lex_state = 15}, - [1636] = {.lex_state = 12, .external_lex_state = 15}, - [1637] = {.lex_state = 12, .external_lex_state = 15}, + [1635] = {.lex_state = 11, .external_lex_state = 15}, + [1636] = {.lex_state = 11, .external_lex_state = 15}, + [1637] = {.lex_state = 11, .external_lex_state = 9}, [1638] = {.lex_state = 12, .external_lex_state = 15}, [1639] = {.lex_state = 11, .external_lex_state = 15}, - [1640] = {.lex_state = 11, .external_lex_state = 15}, - [1641] = {.lex_state = 11, .external_lex_state = 15}, - [1642] = {.lex_state = 11, .external_lex_state = 15}, - [1643] = {.lex_state = 12, .external_lex_state = 15}, + [1640] = {.lex_state = 12, .external_lex_state = 15}, + [1641] = {.lex_state = 12, .external_lex_state = 15}, + [1642] = {.lex_state = 12, .external_lex_state = 15}, + [1643] = {.lex_state = 11, .external_lex_state = 15}, [1644] = {.lex_state = 11, .external_lex_state = 15}, [1645] = {.lex_state = 12, .external_lex_state = 15}, [1646] = {.lex_state = 12, .external_lex_state = 15}, [1647] = {.lex_state = 5, .external_lex_state = 13}, - [1648] = {.lex_state = 11, .external_lex_state = 15}, - [1649] = {.lex_state = 12, .external_lex_state = 15}, + [1648] = {.lex_state = 5, .external_lex_state = 13}, + [1649] = {.lex_state = 5, .external_lex_state = 13}, [1650] = {.lex_state = 12, .external_lex_state = 15}, - [1651] = {.lex_state = 5, .external_lex_state = 13}, - [1652] = {.lex_state = 5, .external_lex_state = 13}, + [1651] = {.lex_state = 11, .external_lex_state = 15}, + [1652] = {.lex_state = 12, .external_lex_state = 15}, [1653] = {.lex_state = 5, .external_lex_state = 15}, [1654] = {.lex_state = 5, .external_lex_state = 15}, - [1655] = {.lex_state = 52, .external_lex_state = 12}, + [1655] = {.lex_state = 8, .external_lex_state = 9}, [1656] = {.lex_state = 52, .external_lex_state = 12}, - [1657] = {.lex_state = 8, .external_lex_state = 9}, - [1658] = {.lex_state = 8, .external_lex_state = 9}, + [1657] = {.lex_state = 52, .external_lex_state = 12}, + [1658] = {.lex_state = 52, .external_lex_state = 12}, [1659] = {.lex_state = 8, .external_lex_state = 9}, [1660] = {.lex_state = 8, .external_lex_state = 9}, - [1661] = {.lex_state = 8, .external_lex_state = 9}, + [1661] = {.lex_state = 52, .external_lex_state = 12}, [1662] = {.lex_state = 8, .external_lex_state = 9}, [1663] = {.lex_state = 52, .external_lex_state = 12}, - [1664] = {.lex_state = 8, .external_lex_state = 9}, + [1664] = {.lex_state = 52, .external_lex_state = 12}, [1665] = {.lex_state = 8, .external_lex_state = 9}, - [1666] = {.lex_state = 8, .external_lex_state = 9}, - [1667] = {.lex_state = 52, .external_lex_state = 12}, - [1668] = {.lex_state = 52, .external_lex_state = 12}, - [1669] = {.lex_state = 52, .external_lex_state = 12}, - [1670] = {.lex_state = 52, .external_lex_state = 12}, + [1666] = {.lex_state = 52, .external_lex_state = 12}, + [1667] = {.lex_state = 8, .external_lex_state = 9}, + [1668] = {.lex_state = 8, .external_lex_state = 9}, + [1669] = {.lex_state = 8, .external_lex_state = 9}, + [1670] = {.lex_state = 8, .external_lex_state = 9}, [1671] = {.lex_state = 52, .external_lex_state = 12}, - [1672] = {.lex_state = 0, .external_lex_state = 16}, - [1673] = {.lex_state = 52, .external_lex_state = 14}, + [1672] = {.lex_state = 52, .external_lex_state = 13}, + [1673] = {.lex_state = 0, .external_lex_state = 16}, [1674] = {.lex_state = 0, .external_lex_state = 16}, [1675] = {.lex_state = 0, .external_lex_state = 16}, [1676] = {.lex_state = 52, .external_lex_state = 13}, - [1677] = {.lex_state = 52, .external_lex_state = 13}, + [1677] = {.lex_state = 0, .external_lex_state = 16}, [1678] = {.lex_state = 0, .external_lex_state = 16}, [1679] = {.lex_state = 0, .external_lex_state = 16}, - [1680] = {.lex_state = 52, .external_lex_state = 13}, + [1680] = {.lex_state = 0, .external_lex_state = 16}, [1681] = {.lex_state = 52, .external_lex_state = 13}, - [1682] = {.lex_state = 52, .external_lex_state = 13}, + [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 = 0, .external_lex_state = 16}, + [1685] = {.lex_state = 52, .external_lex_state = 13}, [1686] = {.lex_state = 52, .external_lex_state = 13}, - [1687] = {.lex_state = 52, .external_lex_state = 13}, + [1687] = {.lex_state = 0, .external_lex_state = 16}, [1688] = {.lex_state = 52, .external_lex_state = 13}, - [1689] = {.lex_state = 0, .external_lex_state = 16}, - [1690] = {.lex_state = 0, .external_lex_state = 16}, - [1691] = {.lex_state = 52, .external_lex_state = 13}, + [1689] = {.lex_state = 52, .external_lex_state = 14}, + [1690] = {.lex_state = 52, .external_lex_state = 13}, + [1691] = {.lex_state = 52, .external_lex_state = 14}, [1692] = {.lex_state = 52, .external_lex_state = 13}, - [1693] = {.lex_state = 52, .external_lex_state = 13}, - [1694] = {.lex_state = 52, .external_lex_state = 13}, - [1695] = {.lex_state = 0, .external_lex_state = 16}, + [1693] = {.lex_state = 0, .external_lex_state = 16}, + [1694] = {.lex_state = 52, .external_lex_state = 14}, + [1695] = {.lex_state = 52, .external_lex_state = 13}, [1696] = {.lex_state = 0, .external_lex_state = 16}, - [1697] = {.lex_state = 52, .external_lex_state = 13}, - [1698] = {.lex_state = 52, .external_lex_state = 13}, - [1699] = {.lex_state = 0, .external_lex_state = 16}, - [1700] = {.lex_state = 0, .external_lex_state = 16}, - [1701] = {.lex_state = 52, .external_lex_state = 13}, - [1702] = {.lex_state = 52, .external_lex_state = 13}, - [1703] = {.lex_state = 0, .external_lex_state = 16}, - [1704] = {.lex_state = 0, .external_lex_state = 16}, + [1697] = {.lex_state = 52, .external_lex_state = 14}, + [1698] = {.lex_state = 8, .external_lex_state = 9}, + [1699] = {.lex_state = 52, .external_lex_state = 13}, + [1700] = {.lex_state = 52, .external_lex_state = 13}, + [1701] = {.lex_state = 0, .external_lex_state = 16}, + [1702] = {.lex_state = 0, .external_lex_state = 16}, + [1703] = {.lex_state = 52, .external_lex_state = 13}, + [1704] = {.lex_state = 52, .external_lex_state = 13}, [1705] = {.lex_state = 52, .external_lex_state = 14}, [1706] = {.lex_state = 0, .external_lex_state = 16}, - [1707] = {.lex_state = 52, .external_lex_state = 14}, - [1708] = {.lex_state = 52, .external_lex_state = 13}, - [1709] = {.lex_state = 52, .external_lex_state = 14}, - [1710] = {.lex_state = 0, .external_lex_state = 16}, + [1707] = {.lex_state = 52, .external_lex_state = 13}, + [1708] = {.lex_state = 0, .external_lex_state = 16}, + [1709] = {.lex_state = 0, .external_lex_state = 16}, + [1710] = {.lex_state = 52, .external_lex_state = 13}, [1711] = {.lex_state = 52, .external_lex_state = 14}, - [1712] = {.lex_state = 52, .external_lex_state = 14}, - [1713] = {.lex_state = 52, .external_lex_state = 14}, - [1714] = {.lex_state = 52, .external_lex_state = 14}, - [1715] = {.lex_state = 0, .external_lex_state = 16}, - [1716] = {.lex_state = 8, .external_lex_state = 9}, + [1712] = {.lex_state = 0, .external_lex_state = 16}, + [1713] = {.lex_state = 52, .external_lex_state = 13}, + [1714] = {.lex_state = 52, .external_lex_state = 13}, + [1715] = {.lex_state = 52, .external_lex_state = 14}, + [1716] = {.lex_state = 52, .external_lex_state = 14}, [1717] = {.lex_state = 8, .external_lex_state = 15}, - [1718] = {.lex_state = 8, .external_lex_state = 13}, - [1719] = {.lex_state = 8, .external_lex_state = 13}, + [1718] = {.lex_state = 8, .external_lex_state = 15}, + [1719] = {.lex_state = 8, .external_lex_state = 15}, [1720] = {.lex_state = 8, .external_lex_state = 15}, - [1721] = {.lex_state = 8, .external_lex_state = 15}, - [1722] = {.lex_state = 8, .external_lex_state = 13}, + [1721] = {.lex_state = 8, .external_lex_state = 13}, + [1722] = {.lex_state = 8, .external_lex_state = 15}, [1723] = {.lex_state = 8, .external_lex_state = 13}, [1724] = {.lex_state = 8, .external_lex_state = 13}, [1725] = {.lex_state = 8, .external_lex_state = 15}, - [1726] = {.lex_state = 8, .external_lex_state = 13}, - [1727] = {.lex_state = 8, .external_lex_state = 15}, - [1728] = {.lex_state = 8, .external_lex_state = 13}, - [1729] = {.lex_state = 8, .external_lex_state = 15}, + [1726] = {.lex_state = 8, .external_lex_state = 9}, + [1727] = {.lex_state = 8, .external_lex_state = 13}, + [1728] = {.lex_state = 52, .external_lex_state = 12}, + [1729] = {.lex_state = 8, .external_lex_state = 13}, [1730] = {.lex_state = 8, .external_lex_state = 15}, - [1731] = {.lex_state = 8, .external_lex_state = 15}, - [1732] = {.lex_state = 52, .external_lex_state = 12}, - [1733] = {.lex_state = 8, .external_lex_state = 13}, - [1734] = {.lex_state = 8, .external_lex_state = 15}, - [1735] = {.lex_state = 8, .external_lex_state = 13}, + [1731] = {.lex_state = 52, .external_lex_state = 12}, + [1732] = {.lex_state = 8, .external_lex_state = 13}, + [1733] = {.lex_state = 8, .external_lex_state = 15}, + [1734] = {.lex_state = 8, .external_lex_state = 13}, + [1735] = {.lex_state = 8, .external_lex_state = 15}, [1736] = {.lex_state = 8, .external_lex_state = 13}, - [1737] = {.lex_state = 52, .external_lex_state = 12}, - [1738] = {.lex_state = 8, .external_lex_state = 9}, - [1739] = {.lex_state = 52, .external_lex_state = 12}, - [1740] = {.lex_state = 52, .external_lex_state = 12}, - [1741] = {.lex_state = 52, .external_lex_state = 12}, - [1742] = {.lex_state = 52, .external_lex_state = 12}, - [1743] = {.lex_state = 52, .external_lex_state = 12}, - [1744] = {.lex_state = 52, .external_lex_state = 12}, + [1737] = {.lex_state = 8, .external_lex_state = 13}, + [1738] = {.lex_state = 8, .external_lex_state = 13}, + [1739] = {.lex_state = 8, .external_lex_state = 14}, + [1740] = {.lex_state = 8, .external_lex_state = 14}, + [1741] = {.lex_state = 8, .external_lex_state = 14}, + [1742] = {.lex_state = 8, .external_lex_state = 14}, + [1743] = {.lex_state = 8, .external_lex_state = 14}, + [1744] = {.lex_state = 8, .external_lex_state = 14}, [1745] = {.lex_state = 52, .external_lex_state = 12}, - [1746] = {.lex_state = 52, .external_lex_state = 9}, - [1747] = {.lex_state = 8, .external_lex_state = 15}, + [1746] = {.lex_state = 8, .external_lex_state = 14}, + [1747] = {.lex_state = 52, .external_lex_state = 12}, [1748] = {.lex_state = 8, .external_lex_state = 15}, - [1749] = {.lex_state = 52, .external_lex_state = 12}, + [1749] = {.lex_state = 52, .external_lex_state = 9}, [1750] = {.lex_state = 52, .external_lex_state = 12}, - [1751] = {.lex_state = 8, .external_lex_state = 14}, - [1752] = {.lex_state = 52, .external_lex_state = 12}, + [1751] = {.lex_state = 52, .external_lex_state = 12}, + [1752] = {.lex_state = 8, .external_lex_state = 15}, [1753] = {.lex_state = 52, .external_lex_state = 12}, [1754] = {.lex_state = 52, .external_lex_state = 12}, [1755] = {.lex_state = 52, .external_lex_state = 12}, - [1756] = {.lex_state = 8, .external_lex_state = 14}, - [1757] = {.lex_state = 8, .external_lex_state = 15}, + [1756] = {.lex_state = 52, .external_lex_state = 12}, + [1757] = {.lex_state = 8, .external_lex_state = 14}, [1758] = {.lex_state = 52, .external_lex_state = 12}, [1759] = {.lex_state = 52, .external_lex_state = 12}, - [1760] = {.lex_state = 8, .external_lex_state = 14}, - [1761] = {.lex_state = 8, .external_lex_state = 15}, + [1760] = {.lex_state = 52, .external_lex_state = 12}, + [1761] = {.lex_state = 52, .external_lex_state = 12}, [1762] = {.lex_state = 52, .external_lex_state = 12}, - [1763] = {.lex_state = 8, .external_lex_state = 14}, - [1764] = {.lex_state = 8, .external_lex_state = 14}, - [1765] = {.lex_state = 8, .external_lex_state = 14}, - [1766] = {.lex_state = 8, .external_lex_state = 14}, - [1767] = {.lex_state = 52, .external_lex_state = 12}, - [1768] = {.lex_state = 8, .external_lex_state = 14}, - [1769] = {.lex_state = 52, .external_lex_state = 12}, - [1770] = {.lex_state = 8, .external_lex_state = 15}, - [1771] = {.lex_state = 52, .external_lex_state = 12}, - [1772] = {.lex_state = 8, .external_lex_state = 14}, - [1773] = {.lex_state = 8, .external_lex_state = 14}, + [1763] = {.lex_state = 52, .external_lex_state = 12}, + [1764] = {.lex_state = 52, .external_lex_state = 12}, + [1765] = {.lex_state = 8, .external_lex_state = 15}, + [1766] = {.lex_state = 52, .external_lex_state = 12}, + [1767] = {.lex_state = 8, .external_lex_state = 14}, + [1768] = {.lex_state = 52, .external_lex_state = 12}, + [1769] = {.lex_state = 8, .external_lex_state = 15}, + [1770] = {.lex_state = 52, .external_lex_state = 12}, + [1771] = {.lex_state = 8, .external_lex_state = 14}, + [1772] = {.lex_state = 52, .external_lex_state = 12}, + [1773] = {.lex_state = 8, .external_lex_state = 15}, [1774] = {.lex_state = 52, .external_lex_state = 12}, - [1775] = {.lex_state = 0, .external_lex_state = 16}, - [1776] = {.lex_state = 9, .external_lex_state = 17}, - [1777] = {.lex_state = 52, .external_lex_state = 14}, - [1778] = {.lex_state = 52, .external_lex_state = 9}, + [1775] = {.lex_state = 52, .external_lex_state = 9}, + [1776] = {.lex_state = 52, .external_lex_state = 14}, + [1777] = {.lex_state = 52, .external_lex_state = 13}, + [1778] = {.lex_state = 52, .external_lex_state = 14}, [1779] = {.lex_state = 52, .external_lex_state = 14}, - [1780] = {.lex_state = 52, .external_lex_state = 9}, + [1780] = {.lex_state = 52, .external_lex_state = 12}, [1781] = {.lex_state = 52, .external_lex_state = 9}, - [1782] = {.lex_state = 52, .external_lex_state = 9}, - [1783] = {.lex_state = 52, .external_lex_state = 13}, - [1784] = {.lex_state = 52, .external_lex_state = 14}, - [1785] = {.lex_state = 52, .external_lex_state = 13}, - [1786] = {.lex_state = 7, .external_lex_state = 12}, - [1787] = {.lex_state = 52, .external_lex_state = 14}, - [1788] = {.lex_state = 9, .external_lex_state = 17}, - [1789] = {.lex_state = 52, .external_lex_state = 9}, + [1782] = {.lex_state = 52, .external_lex_state = 15}, + [1783] = {.lex_state = 52, .external_lex_state = 14}, + [1784] = {.lex_state = 52, .external_lex_state = 9}, + [1785] = {.lex_state = 9, .external_lex_state = 17}, + [1786] = {.lex_state = 52, .external_lex_state = 14}, + [1787] = {.lex_state = 7, .external_lex_state = 14}, + [1788] = {.lex_state = 52, .external_lex_state = 12}, + [1789] = {.lex_state = 52, .external_lex_state = 12}, [1790] = {.lex_state = 52, .external_lex_state = 14}, - [1791] = {.lex_state = 52, .external_lex_state = 15}, - [1792] = {.lex_state = 52, .external_lex_state = 12}, + [1791] = {.lex_state = 52, .external_lex_state = 13}, + [1792] = {.lex_state = 52, .external_lex_state = 13}, [1793] = {.lex_state = 52, .external_lex_state = 14}, - [1794] = {.lex_state = 52, .external_lex_state = 12}, - [1795] = {.lex_state = 52, .external_lex_state = 14}, - [1796] = {.lex_state = 52, .external_lex_state = 15}, + [1794] = {.lex_state = 7, .external_lex_state = 12}, + [1795] = {.lex_state = 7, .external_lex_state = 13}, + [1796] = {.lex_state = 52, .external_lex_state = 13}, [1797] = {.lex_state = 52, .external_lex_state = 14}, - [1798] = {.lex_state = 52, .external_lex_state = 13}, - [1799] = {.lex_state = 9, .external_lex_state = 17}, + [1798] = {.lex_state = 52, .external_lex_state = 9}, + [1799] = {.lex_state = 52, .external_lex_state = 13}, [1800] = {.lex_state = 52, .external_lex_state = 14}, [1801] = {.lex_state = 52, .external_lex_state = 14}, - [1802] = {.lex_state = 52, .external_lex_state = 14}, - [1803] = {.lex_state = 52, .external_lex_state = 14}, - [1804] = {.lex_state = 52, .external_lex_state = 12}, - [1805] = {.lex_state = 52, .external_lex_state = 9}, - [1806] = {.lex_state = 52, .external_lex_state = 13}, - [1807] = {.lex_state = 52, .external_lex_state = 13}, - [1808] = {.lex_state = 52, .external_lex_state = 13}, - [1809] = {.lex_state = 52, .external_lex_state = 13}, + [1802] = {.lex_state = 9, .external_lex_state = 17}, + [1803] = {.lex_state = 52, .external_lex_state = 13}, + [1804] = {.lex_state = 52, .external_lex_state = 14}, + [1805] = {.lex_state = 52, .external_lex_state = 14}, + [1806] = {.lex_state = 52, .external_lex_state = 14}, + [1807] = {.lex_state = 9, .external_lex_state = 17}, + [1808] = {.lex_state = 52, .external_lex_state = 12}, + [1809] = {.lex_state = 52, .external_lex_state = 14}, [1810] = {.lex_state = 52, .external_lex_state = 14}, - [1811] = {.lex_state = 7, .external_lex_state = 13}, - [1812] = {.lex_state = 0, .external_lex_state = 16}, - [1813] = {.lex_state = 52, .external_lex_state = 13}, + [1811] = {.lex_state = 0, .external_lex_state = 16}, + [1812] = {.lex_state = 52, .external_lex_state = 14}, + [1813] = {.lex_state = 52, .external_lex_state = 9}, [1814] = {.lex_state = 52, .external_lex_state = 14}, - [1815] = {.lex_state = 52, .external_lex_state = 9}, - [1816] = {.lex_state = 52, .external_lex_state = 14}, + [1815] = {.lex_state = 52, .external_lex_state = 13}, + [1816] = {.lex_state = 0, .external_lex_state = 16}, [1817] = {.lex_state = 52, .external_lex_state = 14}, - [1818] = {.lex_state = 52, .external_lex_state = 2}, - [1819] = {.lex_state = 8, .external_lex_state = 15}, + [1818] = {.lex_state = 52, .external_lex_state = 13}, + [1819] = {.lex_state = 52, .external_lex_state = 13}, [1820] = {.lex_state = 52, .external_lex_state = 14}, - [1821] = {.lex_state = 52, .external_lex_state = 14}, - [1822] = {.lex_state = 9, .external_lex_state = 17}, - [1823] = {.lex_state = 52, .external_lex_state = 14}, - [1824] = {.lex_state = 52, .external_lex_state = 12}, - [1825] = {.lex_state = 52, .external_lex_state = 14}, - [1826] = {.lex_state = 52, .external_lex_state = 14}, - [1827] = {.lex_state = 52, .external_lex_state = 13}, + [1821] = {.lex_state = 52, .external_lex_state = 13}, + [1822] = {.lex_state = 52, .external_lex_state = 14}, + [1823] = {.lex_state = 52, .external_lex_state = 13}, + [1824] = {.lex_state = 52, .external_lex_state = 14}, + [1825] = {.lex_state = 8, .external_lex_state = 15}, + [1826] = {.lex_state = 52, .external_lex_state = 15}, + [1827] = {.lex_state = 52, .external_lex_state = 9}, [1828] = {.lex_state = 52, .external_lex_state = 9}, - [1829] = {.lex_state = 52, .external_lex_state = 9}, - [1830] = {.lex_state = 52, .external_lex_state = 13}, - [1831] = {.lex_state = 52, .external_lex_state = 14}, - [1832] = {.lex_state = 52, .external_lex_state = 13}, - [1833] = {.lex_state = 7, .external_lex_state = 14}, - [1834] = {.lex_state = 52, .external_lex_state = 13}, - [1835] = {.lex_state = 52, .external_lex_state = 15}, + [1829] = {.lex_state = 52, .external_lex_state = 13}, + [1830] = {.lex_state = 52, .external_lex_state = 2}, + [1831] = {.lex_state = 52, .external_lex_state = 9}, + [1832] = {.lex_state = 52, .external_lex_state = 9}, + [1833] = {.lex_state = 9, .external_lex_state = 17}, + [1834] = {.lex_state = 52, .external_lex_state = 14}, + [1835] = {.lex_state = 52, .external_lex_state = 12}, [1836] = {.lex_state = 52, .external_lex_state = 12}, - [1837] = {.lex_state = 52, .external_lex_state = 14}, - [1838] = {.lex_state = 7, .external_lex_state = 14}, - [1839] = {.lex_state = 52, .external_lex_state = 15}, - [1840] = {.lex_state = 7, .external_lex_state = 13}, - [1841] = {.lex_state = 7, .external_lex_state = 12}, - [1842] = {.lex_state = 52, .external_lex_state = 7}, - [1843] = {.lex_state = 52, .external_lex_state = 13}, - [1844] = {.lex_state = 52, .external_lex_state = 14}, - [1845] = {.lex_state = 52, .external_lex_state = 12}, - [1846] = {.lex_state = 52, .external_lex_state = 15}, - [1847] = {.lex_state = 52, .external_lex_state = 6}, - [1848] = {.lex_state = 52, .external_lex_state = 13}, - [1849] = {.lex_state = 7, .external_lex_state = 14}, - [1850] = {.lex_state = 52, .external_lex_state = 14}, - [1851] = {.lex_state = 52, .external_lex_state = 14}, - [1852] = {.lex_state = 52, .external_lex_state = 13}, + [1837] = {.lex_state = 52, .external_lex_state = 12}, + [1838] = {.lex_state = 7, .external_lex_state = 15}, + [1839] = {.lex_state = 52, .external_lex_state = 12}, + [1840] = {.lex_state = 52, .external_lex_state = 14}, + [1841] = {.lex_state = 52, .external_lex_state = 12}, + [1842] = {.lex_state = 52, .external_lex_state = 12}, + [1843] = {.lex_state = 7, .external_lex_state = 13}, + [1844] = {.lex_state = 52, .external_lex_state = 15}, + [1845] = {.lex_state = 52, .external_lex_state = 15}, + [1846] = {.lex_state = 52, .external_lex_state = 8}, + [1847] = {.lex_state = 52, .external_lex_state = 14}, + [1848] = {.lex_state = 7, .external_lex_state = 13}, + [1849] = {.lex_state = 52, .external_lex_state = 9}, + [1850] = {.lex_state = 52, .external_lex_state = 13}, + [1851] = {.lex_state = 52, .external_lex_state = 15}, + [1852] = {.lex_state = 7, .external_lex_state = 12}, [1853] = {.lex_state = 52, .external_lex_state = 14}, - [1854] = {.lex_state = 7, .external_lex_state = 13}, - [1855] = {.lex_state = 52, .external_lex_state = 12}, - [1856] = {.lex_state = 52, .external_lex_state = 15}, + [1854] = {.lex_state = 52, .external_lex_state = 12}, + [1855] = {.lex_state = 52, .external_lex_state = 13}, + [1856] = {.lex_state = 52, .external_lex_state = 13}, [1857] = {.lex_state = 52, .external_lex_state = 15}, - [1858] = {.lex_state = 52, .external_lex_state = 8}, - [1859] = {.lex_state = 52, .external_lex_state = 12}, - [1860] = {.lex_state = 52, .external_lex_state = 9}, + [1858] = {.lex_state = 52, .external_lex_state = 12}, + [1859] = {.lex_state = 52, .external_lex_state = 9}, + [1860] = {.lex_state = 52, .external_lex_state = 14}, [1861] = {.lex_state = 52, .external_lex_state = 14}, - [1862] = {.lex_state = 52, .external_lex_state = 12}, + [1862] = {.lex_state = 7, .external_lex_state = 14}, [1863] = {.lex_state = 52, .external_lex_state = 15}, - [1864] = {.lex_state = 7, .external_lex_state = 13}, - [1865] = {.lex_state = 52, .external_lex_state = 12}, - [1866] = {.lex_state = 52, .external_lex_state = 12}, - [1867] = {.lex_state = 52, .external_lex_state = 13}, - [1868] = {.lex_state = 52, .external_lex_state = 15}, + [1864] = {.lex_state = 7, .external_lex_state = 14}, + [1865] = {.lex_state = 7, .external_lex_state = 12}, + [1866] = {.lex_state = 52, .external_lex_state = 15}, + [1867] = {.lex_state = 52, .external_lex_state = 12}, + [1868] = {.lex_state = 52, .external_lex_state = 13}, [1869] = {.lex_state = 52, .external_lex_state = 15}, - [1870] = {.lex_state = 7, .external_lex_state = 14}, - [1871] = {.lex_state = 7, .external_lex_state = 12}, - [1872] = {.lex_state = 52, .external_lex_state = 12}, - [1873] = {.lex_state = 7, .external_lex_state = 15}, - [1874] = {.lex_state = 52, .external_lex_state = 13}, - [1875] = {.lex_state = 52, .external_lex_state = 12}, - [1876] = {.lex_state = 7, .external_lex_state = 12}, - [1877] = {.lex_state = 52, .external_lex_state = 9}, + [1870] = {.lex_state = 52, .external_lex_state = 12}, + [1871] = {.lex_state = 52, .external_lex_state = 15}, + [1872] = {.lex_state = 52, .external_lex_state = 14}, + [1873] = {.lex_state = 7, .external_lex_state = 13}, + [1874] = {.lex_state = 52, .external_lex_state = 14}, + [1875] = {.lex_state = 52, .external_lex_state = 13}, + [1876] = {.lex_state = 52, .external_lex_state = 13}, + [1877] = {.lex_state = 52, .external_lex_state = 7}, [1878] = {.lex_state = 52, .external_lex_state = 12}, - [1879] = {.lex_state = 52, .external_lex_state = 13}, - [1880] = {.lex_state = 52, .external_lex_state = 12}, + [1879] = {.lex_state = 52, .external_lex_state = 14}, + [1880] = {.lex_state = 52, .external_lex_state = 6}, [1881] = {.lex_state = 52, .external_lex_state = 15}, - [1882] = {.lex_state = 52, .external_lex_state = 14}, - [1883] = {.lex_state = 52, .external_lex_state = 14}, - [1884] = {.lex_state = 52, .external_lex_state = 12}, - [1885] = {.lex_state = 0, .external_lex_state = 16}, - [1886] = {.lex_state = 52, .external_lex_state = 12}, - [1887] = {.lex_state = 52, .external_lex_state = 12}, + [1882] = {.lex_state = 7, .external_lex_state = 14}, + [1883] = {.lex_state = 52, .external_lex_state = 12}, + [1884] = {.lex_state = 7, .external_lex_state = 12}, + [1885] = {.lex_state = 52, .external_lex_state = 15}, + [1886] = {.lex_state = 52, .external_lex_state = 13}, + [1887] = {.lex_state = 0, .external_lex_state = 16}, [1888] = {.lex_state = 8, .external_lex_state = 13}, - [1889] = {.lex_state = 8, .external_lex_state = 9}, + [1889] = {.lex_state = 52, .external_lex_state = 12}, [1890] = {.lex_state = 8, .external_lex_state = 9}, - [1891] = {.lex_state = 52, .external_lex_state = 14}, - [1892] = {.lex_state = 52, .external_lex_state = 12}, + [1891] = {.lex_state = 0, .external_lex_state = 16}, + [1892] = {.lex_state = 8, .external_lex_state = 13}, [1893] = {.lex_state = 52, .external_lex_state = 15}, - [1894] = {.lex_state = 8, .external_lex_state = 9}, - [1895] = {.lex_state = 7, .external_lex_state = 13}, - [1896] = {.lex_state = 8, .external_lex_state = 15}, - [1897] = {.lex_state = 52, .external_lex_state = 13}, - [1898] = {.lex_state = 7, .external_lex_state = 9}, - [1899] = {.lex_state = 52, .external_lex_state = 13}, - [1900] = {.lex_state = 52, .external_lex_state = 12}, - [1901] = {.lex_state = 52, .external_lex_state = 14}, - [1902] = {.lex_state = 52, .external_lex_state = 12}, - [1903] = {.lex_state = 52, .external_lex_state = 12}, - [1904] = {.lex_state = 8, .external_lex_state = 14}, - [1905] = {.lex_state = 52, .external_lex_state = 12}, - [1906] = {.lex_state = 7, .external_lex_state = 9}, - [1907] = {.lex_state = 52, .external_lex_state = 13}, - [1908] = {.lex_state = 52, .external_lex_state = 15}, - [1909] = {.lex_state = 52, .external_lex_state = 14}, - [1910] = {.lex_state = 52, .external_lex_state = 13}, - [1911] = {.lex_state = 52, .external_lex_state = 15}, + [1894] = {.lex_state = 52, .external_lex_state = 13}, + [1895] = {.lex_state = 52, .external_lex_state = 14}, + [1896] = {.lex_state = 8, .external_lex_state = 9}, + [1897] = {.lex_state = 8, .external_lex_state = 9}, + [1898] = {.lex_state = 8, .external_lex_state = 9}, + [1899] = {.lex_state = 8, .external_lex_state = 9}, + [1900] = {.lex_state = 52, .external_lex_state = 9}, + [1901] = {.lex_state = 8, .external_lex_state = 9}, + [1902] = {.lex_state = 52, .external_lex_state = 13}, + [1903] = {.lex_state = 8, .external_lex_state = 13}, + [1904] = {.lex_state = 52, .external_lex_state = 15}, + [1905] = {.lex_state = 0, .external_lex_state = 16}, + [1906] = {.lex_state = 52, .external_lex_state = 13}, + [1907] = {.lex_state = 52, .external_lex_state = 14}, + [1908] = {.lex_state = 52, .external_lex_state = 13}, + [1909] = {.lex_state = 52, .external_lex_state = 15}, + [1910] = {.lex_state = 52, .external_lex_state = 12}, + [1911] = {.lex_state = 52, .external_lex_state = 14}, [1912] = {.lex_state = 52, .external_lex_state = 15}, - [1913] = {.lex_state = 52, .external_lex_state = 15}, - [1914] = {.lex_state = 52, .external_lex_state = 14}, - [1915] = {.lex_state = 52, .external_lex_state = 15}, + [1913] = {.lex_state = 52, .external_lex_state = 14}, + [1914] = {.lex_state = 52, .external_lex_state = 15}, + [1915] = {.lex_state = 8, .external_lex_state = 15}, [1916] = {.lex_state = 52, .external_lex_state = 13}, [1917] = {.lex_state = 52, .external_lex_state = 12}, - [1918] = {.lex_state = 8, .external_lex_state = 13}, + [1918] = {.lex_state = 52, .external_lex_state = 13}, [1919] = {.lex_state = 52, .external_lex_state = 15}, - [1920] = {.lex_state = 52, .external_lex_state = 13}, - [1921] = {.lex_state = 52, .external_lex_state = 13}, - [1922] = {.lex_state = 8, .external_lex_state = 14}, - [1923] = {.lex_state = 7, .external_lex_state = 12}, - [1924] = {.lex_state = 0, .external_lex_state = 16}, - [1925] = {.lex_state = 8, .external_lex_state = 13}, - [1926] = {.lex_state = 0, .external_lex_state = 16}, - [1927] = {.lex_state = 52, .external_lex_state = 9}, - [1928] = {.lex_state = 52, .external_lex_state = 14}, - [1929] = {.lex_state = 52, .external_lex_state = 14}, + [1920] = {.lex_state = 52, .external_lex_state = 15}, + [1921] = {.lex_state = 52, .external_lex_state = 14}, + [1922] = {.lex_state = 52, .external_lex_state = 12}, + [1923] = {.lex_state = 8, .external_lex_state = 14}, + [1924] = {.lex_state = 7, .external_lex_state = 9}, + [1925] = {.lex_state = 52, .external_lex_state = 13}, + [1926] = {.lex_state = 8, .external_lex_state = 9}, + [1927] = {.lex_state = 52, .external_lex_state = 14}, + [1928] = {.lex_state = 52, .external_lex_state = 12}, + [1929] = {.lex_state = 0, .external_lex_state = 16}, [1930] = {.lex_state = 52, .external_lex_state = 15}, - [1931] = {.lex_state = 52, .external_lex_state = 14}, - [1932] = {.lex_state = 8, .external_lex_state = 13}, - [1933] = {.lex_state = 52, .external_lex_state = 12}, - [1934] = {.lex_state = 0, .external_lex_state = 16}, - [1935] = {.lex_state = 52, .external_lex_state = 12}, - [1936] = {.lex_state = 52, .external_lex_state = 13}, - [1937] = {.lex_state = 52, .external_lex_state = 14}, - [1938] = {.lex_state = 0, .external_lex_state = 16}, - [1939] = {.lex_state = 52, .external_lex_state = 14}, - [1940] = {.lex_state = 0, .external_lex_state = 16}, - [1941] = {.lex_state = 52, .external_lex_state = 15}, - [1942] = {.lex_state = 52, .external_lex_state = 15}, - [1943] = {.lex_state = 52, .external_lex_state = 15}, - [1944] = {.lex_state = 52, .external_lex_state = 14}, - [1945] = {.lex_state = 8, .external_lex_state = 13}, - [1946] = {.lex_state = 7, .external_lex_state = 9}, - [1947] = {.lex_state = 52, .external_lex_state = 15}, - [1948] = {.lex_state = 52, .external_lex_state = 13}, - [1949] = {.lex_state = 52, .external_lex_state = 13}, - [1950] = {.lex_state = 8, .external_lex_state = 9}, - [1951] = {.lex_state = 52, .external_lex_state = 12}, - [1952] = {.lex_state = 8, .external_lex_state = 13}, - [1953] = {.lex_state = 52, .external_lex_state = 13}, - [1954] = {.lex_state = 52, .external_lex_state = 15}, - [1955] = {.lex_state = 52, .external_lex_state = 13}, - [1956] = {.lex_state = 52, .external_lex_state = 14}, - [1957] = {.lex_state = 8, .external_lex_state = 13}, - [1958] = {.lex_state = 8, .external_lex_state = 14}, - [1959] = {.lex_state = 52, .external_lex_state = 15}, - [1960] = {.lex_state = 8, .external_lex_state = 13}, - [1961] = {.lex_state = 52, .external_lex_state = 13}, - [1962] = {.lex_state = 52, .external_lex_state = 13}, - [1963] = {.lex_state = 8, .external_lex_state = 15}, - [1964] = {.lex_state = 52, .external_lex_state = 12}, - [1965] = {.lex_state = 52, .external_lex_state = 9}, - [1966] = {.lex_state = 8, .external_lex_state = 9}, - [1967] = {.lex_state = 52, .external_lex_state = 15}, - [1968] = {.lex_state = 52, .external_lex_state = 12}, - [1969] = {.lex_state = 52, .external_lex_state = 13}, - [1970] = {.lex_state = 52, .external_lex_state = 9}, - [1971] = {.lex_state = 8, .external_lex_state = 9}, - [1972] = {.lex_state = 8, .external_lex_state = 9}, - [1973] = {.lex_state = 52, .external_lex_state = 14}, - [1974] = {.lex_state = 8, .external_lex_state = 9}, - [1975] = {.lex_state = 0, .external_lex_state = 16}, - [1976] = {.lex_state = 0, .external_lex_state = 16}, - [1977] = {.lex_state = 52, .external_lex_state = 13}, + [1931] = {.lex_state = 52, .external_lex_state = 15}, + [1932] = {.lex_state = 7, .external_lex_state = 12}, + [1933] = {.lex_state = 52, .external_lex_state = 15}, + [1934] = {.lex_state = 52, .external_lex_state = 15}, + [1935] = {.lex_state = 7, .external_lex_state = 14}, + [1936] = {.lex_state = 52, .external_lex_state = 14}, + [1937] = {.lex_state = 52, .external_lex_state = 9}, + [1938] = {.lex_state = 8, .external_lex_state = 15}, + [1939] = {.lex_state = 8, .external_lex_state = 15}, + [1940] = {.lex_state = 8, .external_lex_state = 14}, + [1941] = {.lex_state = 52, .external_lex_state = 13}, + [1942] = {.lex_state = 52, .external_lex_state = 14}, + [1943] = {.lex_state = 52, .external_lex_state = 14}, + [1944] = {.lex_state = 52, .external_lex_state = 12}, + [1945] = {.lex_state = 52, .external_lex_state = 13}, + [1946] = {.lex_state = 8, .external_lex_state = 14}, + [1947] = {.lex_state = 52, .external_lex_state = 14}, + [1948] = {.lex_state = 7, .external_lex_state = 9}, + [1949] = {.lex_state = 0, .external_lex_state = 16}, + [1950] = {.lex_state = 52, .external_lex_state = 14}, + [1951] = {.lex_state = 8, .external_lex_state = 13}, + [1952] = {.lex_state = 52, .external_lex_state = 12}, + [1953] = {.lex_state = 52, .external_lex_state = 9}, + [1954] = {.lex_state = 8, .external_lex_state = 13}, + [1955] = {.lex_state = 8, .external_lex_state = 13}, + [1956] = {.lex_state = 0, .external_lex_state = 16}, + [1957] = {.lex_state = 52, .external_lex_state = 13}, + [1958] = {.lex_state = 52, .external_lex_state = 12}, + [1959] = {.lex_state = 52, .external_lex_state = 12}, + [1960] = {.lex_state = 52, .external_lex_state = 15}, + [1961] = {.lex_state = 52, .external_lex_state = 12}, + [1962] = {.lex_state = 52, .external_lex_state = 12}, + [1963] = {.lex_state = 8, .external_lex_state = 9}, + [1964] = {.lex_state = 52, .external_lex_state = 14}, + [1965] = {.lex_state = 8, .external_lex_state = 13}, + [1966] = {.lex_state = 52, .external_lex_state = 13}, + [1967] = {.lex_state = 8, .external_lex_state = 9}, + [1968] = {.lex_state = 8, .external_lex_state = 14}, + [1969] = {.lex_state = 0, .external_lex_state = 16}, + [1970] = {.lex_state = 52, .external_lex_state = 13}, + [1971] = {.lex_state = 52, .external_lex_state = 15}, + [1972] = {.lex_state = 0, .external_lex_state = 16}, + [1973] = {.lex_state = 52, .external_lex_state = 15}, + [1974] = {.lex_state = 52, .external_lex_state = 13}, + [1975] = {.lex_state = 7, .external_lex_state = 13}, + [1976] = {.lex_state = 52, .external_lex_state = 14}, + [1977] = {.lex_state = 8, .external_lex_state = 13}, [1978] = {.lex_state = 52, .external_lex_state = 12}, - [1979] = {.lex_state = 8, .external_lex_state = 9}, - [1980] = {.lex_state = 52, .external_lex_state = 14}, - [1981] = {.lex_state = 8, .external_lex_state = 13}, - [1982] = {.lex_state = 52, .external_lex_state = 13}, - [1983] = {.lex_state = 7, .external_lex_state = 14}, - [1984] = {.lex_state = 52, .external_lex_state = 15}, - [1985] = {.lex_state = 8, .external_lex_state = 14}, - [1986] = {.lex_state = 52, .external_lex_state = 14}, - [1987] = {.lex_state = 52, .external_lex_state = 13}, - [1988] = {.lex_state = 52, .external_lex_state = 12}, - [1989] = {.lex_state = 8, .external_lex_state = 9}, - [1990] = {.lex_state = 8, .external_lex_state = 15}, - [1991] = {.lex_state = 8, .external_lex_state = 13}, - [1992] = {.lex_state = 52, .external_lex_state = 15}, - [1993] = {.lex_state = 52, .external_lex_state = 13}, - [1994] = {.lex_state = 8, .external_lex_state = 9}, - [1995] = {.lex_state = 8, .external_lex_state = 15}, - [1996] = {.lex_state = 52, .external_lex_state = 14}, - [1997] = {.lex_state = 52, .external_lex_state = 12}, - [1998] = {.lex_state = 52, .external_lex_state = 14}, - [1999] = {.lex_state = 52, .external_lex_state = 15}, - [2000] = {.lex_state = 52, .external_lex_state = 15}, - [2001] = {.lex_state = 52, .external_lex_state = 12}, - [2002] = {.lex_state = 52, .external_lex_state = 15}, - [2003] = {.lex_state = 52, .external_lex_state = 15}, - [2004] = {.lex_state = 52, .external_lex_state = 13}, - [2005] = {.lex_state = 52, .external_lex_state = 9}, - [2006] = {.lex_state = 52, .external_lex_state = 15}, - [2007] = {.lex_state = 52, .external_lex_state = 15}, - [2008] = {.lex_state = 52, .external_lex_state = 15}, - [2009] = {.lex_state = 52, .external_lex_state = 12}, + [1979] = {.lex_state = 52, .external_lex_state = 13}, + [1980] = {.lex_state = 52, .external_lex_state = 12}, + [1981] = {.lex_state = 8, .external_lex_state = 9}, + [1982] = {.lex_state = 52, .external_lex_state = 12}, + [1983] = {.lex_state = 52, .external_lex_state = 13}, + [1984] = {.lex_state = 52, .external_lex_state = 13}, + [1985] = {.lex_state = 7, .external_lex_state = 9}, + [1986] = {.lex_state = 8, .external_lex_state = 13}, + [1987] = {.lex_state = 8, .external_lex_state = 13}, + [1988] = {.lex_state = 52, .external_lex_state = 15}, + [1989] = {.lex_state = 52, .external_lex_state = 14}, + [1990] = {.lex_state = 52, .external_lex_state = 13}, + [1991] = {.lex_state = 52, .external_lex_state = 12}, + [1992] = {.lex_state = 52, .external_lex_state = 12}, + [1993] = {.lex_state = 8, .external_lex_state = 14}, + [1994] = {.lex_state = 52, .external_lex_state = 15}, + [1995] = {.lex_state = 52, .external_lex_state = 12}, + [1996] = {.lex_state = 52, .external_lex_state = 12}, + [1997] = {.lex_state = 8, .external_lex_state = 14}, + [1998] = {.lex_state = 52, .external_lex_state = 12}, + [1999] = {.lex_state = 8, .external_lex_state = 14}, + [2000] = {.lex_state = 52, .external_lex_state = 9}, + [2001] = {.lex_state = 8, .external_lex_state = 14}, + [2002] = {.lex_state = 8, .external_lex_state = 14}, + [2003] = {.lex_state = 52, .external_lex_state = 9}, + [2004] = {.lex_state = 52, .external_lex_state = 9}, + [2005] = {.lex_state = 52, .external_lex_state = 15}, + [2006] = {.lex_state = 52, .external_lex_state = 14}, + [2007] = {.lex_state = 7, .external_lex_state = 9}, + [2008] = {.lex_state = 52, .external_lex_state = 14}, + [2009] = {.lex_state = 3, .external_lex_state = 12}, [2010] = {.lex_state = 52, .external_lex_state = 15}, - [2011] = {.lex_state = 52, .external_lex_state = 15}, - [2012] = {.lex_state = 8, .external_lex_state = 14}, + [2011] = {.lex_state = 8, .external_lex_state = 14}, + [2012] = {.lex_state = 52, .external_lex_state = 12}, [2013] = {.lex_state = 52, .external_lex_state = 15}, [2014] = {.lex_state = 52, .external_lex_state = 15}, - [2015] = {.lex_state = 52, .external_lex_state = 9}, + [2015] = {.lex_state = 52, .external_lex_state = 15}, [2016] = {.lex_state = 8, .external_lex_state = 15}, - [2017] = {.lex_state = 8, .external_lex_state = 15}, - [2018] = {.lex_state = 8, .external_lex_state = 15}, + [2017] = {.lex_state = 52, .external_lex_state = 15}, + [2018] = {.lex_state = 52, .external_lex_state = 13}, [2019] = {.lex_state = 52, .external_lex_state = 15}, - [2020] = {.lex_state = 52, .external_lex_state = 13}, + [2020] = {.lex_state = 52, .external_lex_state = 14}, [2021] = {.lex_state = 52, .external_lex_state = 15}, - [2022] = {.lex_state = 52, .external_lex_state = 13}, - [2023] = {.lex_state = 52, .external_lex_state = 15}, - [2024] = {.lex_state = 52, .external_lex_state = 13}, + [2022] = {.lex_state = 52, .external_lex_state = 12}, + [2023] = {.lex_state = 8, .external_lex_state = 14}, + [2024] = {.lex_state = 52, .external_lex_state = 15}, [2025] = {.lex_state = 52, .external_lex_state = 15}, - [2026] = {.lex_state = 52, .external_lex_state = 15}, - [2027] = {.lex_state = 52, .external_lex_state = 15}, + [2026] = {.lex_state = 52, .external_lex_state = 12}, + [2027] = {.lex_state = 52, .external_lex_state = 12}, [2028] = {.lex_state = 52, .external_lex_state = 15}, [2029] = {.lex_state = 52, .external_lex_state = 15}, - [2030] = {.lex_state = 52, .external_lex_state = 15}, - [2031] = {.lex_state = 52, .external_lex_state = 12}, - [2032] = {.lex_state = 8, .external_lex_state = 14}, - [2033] = {.lex_state = 8, .external_lex_state = 14}, - [2034] = {.lex_state = 52, .external_lex_state = 9}, - [2035] = {.lex_state = 52, .external_lex_state = 12}, + [2030] = {.lex_state = 52, .external_lex_state = 12}, + [2031] = {.lex_state = 8, .external_lex_state = 14}, + [2032] = {.lex_state = 52, .external_lex_state = 12}, + [2033] = {.lex_state = 52, .external_lex_state = 15}, + [2034] = {.lex_state = 52, .external_lex_state = 13}, + [2035] = {.lex_state = 8, .external_lex_state = 15}, [2036] = {.lex_state = 52, .external_lex_state = 15}, - [2037] = {.lex_state = 3, .external_lex_state = 12}, - [2038] = {.lex_state = 52, .external_lex_state = 15}, - [2039] = {.lex_state = 52, .external_lex_state = 15}, - [2040] = {.lex_state = 52, .external_lex_state = 15}, - [2041] = {.lex_state = 52, .external_lex_state = 12}, - [2042] = {.lex_state = 52, .external_lex_state = 15}, + [2037] = {.lex_state = 52, .external_lex_state = 15}, + [2038] = {.lex_state = 52, .external_lex_state = 12}, + [2039] = {.lex_state = 52, .external_lex_state = 14}, + [2040] = {.lex_state = 8, .external_lex_state = 14}, + [2041] = {.lex_state = 52, .external_lex_state = 9}, + [2042] = {.lex_state = 52, .external_lex_state = 13}, [2043] = {.lex_state = 52, .external_lex_state = 15}, - [2044] = {.lex_state = 3, .external_lex_state = 12}, + [2044] = {.lex_state = 52, .external_lex_state = 15}, [2045] = {.lex_state = 52, .external_lex_state = 15}, - [2046] = {.lex_state = 52, .external_lex_state = 12}, - [2047] = {.lex_state = 7, .external_lex_state = 9}, - [2048] = {.lex_state = 52, .external_lex_state = 14}, + [2046] = {.lex_state = 52, .external_lex_state = 15}, + [2047] = {.lex_state = 52, .external_lex_state = 15}, + [2048] = {.lex_state = 52, .external_lex_state = 15}, [2049] = {.lex_state = 52, .external_lex_state = 15}, - [2050] = {.lex_state = 52, .external_lex_state = 9}, - [2051] = {.lex_state = 52, .external_lex_state = 15}, - [2052] = {.lex_state = 52, .external_lex_state = 12}, - [2053] = {.lex_state = 8, .external_lex_state = 15}, - [2054] = {.lex_state = 52, .external_lex_state = 15}, + [2050] = {.lex_state = 52, .external_lex_state = 15}, + [2051] = {.lex_state = 52, .external_lex_state = 14}, + [2052] = {.lex_state = 52, .external_lex_state = 14}, + [2053] = {.lex_state = 52, .external_lex_state = 15}, + [2054] = {.lex_state = 52, .external_lex_state = 12}, [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 = 3, .external_lex_state = 12}, - [2059] = {.lex_state = 8, .external_lex_state = 14}, - [2060] = {.lex_state = 8, .external_lex_state = 14}, - [2061] = {.lex_state = 8, .external_lex_state = 14}, - [2062] = {.lex_state = 52, .external_lex_state = 12}, - [2063] = {.lex_state = 52, .external_lex_state = 15}, - [2064] = {.lex_state = 52, .external_lex_state = 15}, - [2065] = {.lex_state = 52, .external_lex_state = 15}, + [2056] = {.lex_state = 52, .external_lex_state = 15}, + [2057] = {.lex_state = 52, .external_lex_state = 12}, + [2058] = {.lex_state = 52, .external_lex_state = 15}, + [2059] = {.lex_state = 52, .external_lex_state = 9}, + [2060] = {.lex_state = 52, .external_lex_state = 12}, + [2061] = {.lex_state = 52, .external_lex_state = 12}, + [2062] = {.lex_state = 52, .external_lex_state = 15}, + [2063] = {.lex_state = 8, .external_lex_state = 13}, + [2064] = {.lex_state = 52, .external_lex_state = 14}, + [2065] = {.lex_state = 8, .external_lex_state = 15}, [2066] = {.lex_state = 52, .external_lex_state = 12}, - [2067] = {.lex_state = 52, .external_lex_state = 12}, - [2068] = {.lex_state = 52, .external_lex_state = 12}, - [2069] = {.lex_state = 8, .external_lex_state = 14}, + [2067] = {.lex_state = 8, .external_lex_state = 9}, + [2068] = {.lex_state = 52, .external_lex_state = 15}, + [2069] = {.lex_state = 52, .external_lex_state = 9}, [2070] = {.lex_state = 52, .external_lex_state = 15}, - [2071] = {.lex_state = 52, .external_lex_state = 12}, - [2072] = {.lex_state = 52, .external_lex_state = 12}, - [2073] = {.lex_state = 52, .external_lex_state = 12}, - [2074] = {.lex_state = 52, .external_lex_state = 12}, - [2075] = {.lex_state = 52, .external_lex_state = 12}, - [2076] = {.lex_state = 52, .external_lex_state = 15}, - [2077] = {.lex_state = 52, .external_lex_state = 9}, - [2078] = {.lex_state = 8, .external_lex_state = 15}, + [2071] = {.lex_state = 52, .external_lex_state = 15}, + [2072] = {.lex_state = 8, .external_lex_state = 15}, + [2073] = {.lex_state = 52, .external_lex_state = 15}, + [2074] = {.lex_state = 52, .external_lex_state = 14}, + [2075] = {.lex_state = 52, .external_lex_state = 15}, + [2076] = {.lex_state = 52, .external_lex_state = 12}, + [2077] = {.lex_state = 52, .external_lex_state = 15}, + [2078] = {.lex_state = 52, .external_lex_state = 15}, [2079] = {.lex_state = 52, .external_lex_state = 15}, - [2080] = {.lex_state = 52, .external_lex_state = 14}, - [2081] = {.lex_state = 52, .external_lex_state = 14}, - [2082] = {.lex_state = 8, .external_lex_state = 14}, - [2083] = {.lex_state = 52, .external_lex_state = 15}, - [2084] = {.lex_state = 52, .external_lex_state = 15}, - [2085] = {.lex_state = 8, .external_lex_state = 15}, - [2086] = {.lex_state = 52, .external_lex_state = 14}, - [2087] = {.lex_state = 8, .external_lex_state = 14}, - [2088] = {.lex_state = 52, .external_lex_state = 15}, - [2089] = {.lex_state = 52, .external_lex_state = 13}, - [2090] = {.lex_state = 52, .external_lex_state = 12}, + [2080] = {.lex_state = 8, .external_lex_state = 15}, + [2081] = {.lex_state = 52, .external_lex_state = 15}, + [2082] = {.lex_state = 52, .external_lex_state = 9}, + [2083] = {.lex_state = 52, .external_lex_state = 13}, + [2084] = {.lex_state = 3, .external_lex_state = 12}, + [2085] = {.lex_state = 52, .external_lex_state = 12}, + [2086] = {.lex_state = 3, .external_lex_state = 12}, + [2087] = {.lex_state = 52, .external_lex_state = 14}, + [2088] = {.lex_state = 52, .external_lex_state = 12}, + [2089] = {.lex_state = 52, .external_lex_state = 15}, + [2090] = {.lex_state = 8, .external_lex_state = 15}, [2091] = {.lex_state = 52, .external_lex_state = 15}, - [2092] = {.lex_state = 52, .external_lex_state = 9}, + [2092] = {.lex_state = 8, .external_lex_state = 14}, [2093] = {.lex_state = 52, .external_lex_state = 12}, - [2094] = {.lex_state = 52, .external_lex_state = 15}, + [2094] = {.lex_state = 52, .external_lex_state = 13}, [2095] = {.lex_state = 52, .external_lex_state = 15}, [2096] = {.lex_state = 52, .external_lex_state = 15}, - [2097] = {.lex_state = 52, .external_lex_state = 13}, - [2098] = {.lex_state = 52, .external_lex_state = 14}, + [2097] = {.lex_state = 52, .external_lex_state = 12}, + [2098] = {.lex_state = 52, .external_lex_state = 13}, [2099] = {.lex_state = 52, .external_lex_state = 15}, - [2100] = {.lex_state = 52, .external_lex_state = 15}, + [2100] = {.lex_state = 52, .external_lex_state = 13}, [2101] = {.lex_state = 52, .external_lex_state = 15}, - [2102] = {.lex_state = 52, .external_lex_state = 14}, - [2103] = {.lex_state = 52, .external_lex_state = 14}, - [2104] = {.lex_state = 52, .external_lex_state = 12}, - [2105] = {.lex_state = 52, .external_lex_state = 13}, + [2102] = {.lex_state = 52, .external_lex_state = 15}, + [2103] = {.lex_state = 52, .external_lex_state = 15}, + [2104] = {.lex_state = 52, .external_lex_state = 13}, + [2105] = {.lex_state = 8, .external_lex_state = 15}, [2106] = {.lex_state = 52, .external_lex_state = 13}, - [2107] = {.lex_state = 8, .external_lex_state = 14}, - [2108] = {.lex_state = 8, .external_lex_state = 13}, - [2109] = {.lex_state = 52, .external_lex_state = 12}, + [2107] = {.lex_state = 52, .external_lex_state = 15}, + [2108] = {.lex_state = 52, .external_lex_state = 15}, + [2109] = {.lex_state = 52, .external_lex_state = 15}, [2110] = {.lex_state = 52, .external_lex_state = 14}, - [2111] = {.lex_state = 52, .external_lex_state = 9}, - [2112] = {.lex_state = 52, .external_lex_state = 13}, - [2113] = {.lex_state = 52, .external_lex_state = 12}, - [2114] = {.lex_state = 52, .external_lex_state = 13}, - [2115] = {.lex_state = 52, .external_lex_state = 13}, - [2116] = {.lex_state = 52, .external_lex_state = 13}, + [2111] = {.lex_state = 52, .external_lex_state = 14}, + [2112] = {.lex_state = 52, .external_lex_state = 9}, + [2113] = {.lex_state = 7, .external_lex_state = 15}, + [2114] = {.lex_state = 52, .external_lex_state = 15}, + [2115] = {.lex_state = 52, .external_lex_state = 15}, + [2116] = {.lex_state = 52, .external_lex_state = 9}, [2117] = {.lex_state = 52, .external_lex_state = 15}, - [2118] = {.lex_state = 52, .external_lex_state = 13}, - [2119] = {.lex_state = 52, .external_lex_state = 14}, - [2120] = {.lex_state = 52, .external_lex_state = 13}, - [2121] = {.lex_state = 52, .external_lex_state = 13}, + [2118] = {.lex_state = 52, .external_lex_state = 9}, + [2119] = {.lex_state = 52, .external_lex_state = 9}, + [2120] = {.lex_state = 8, .external_lex_state = 15}, + [2121] = {.lex_state = 52, .external_lex_state = 15}, [2122] = {.lex_state = 52, .external_lex_state = 9}, - [2123] = {.lex_state = 52, .external_lex_state = 13}, - [2124] = {.lex_state = 52, .external_lex_state = 13}, - [2125] = {.lex_state = 52, .external_lex_state = 12}, - [2126] = {.lex_state = 52, .external_lex_state = 13}, - [2127] = {.lex_state = 8, .external_lex_state = 15}, + [2123] = {.lex_state = 52, .external_lex_state = 9}, + [2124] = {.lex_state = 52, .external_lex_state = 9}, + [2125] = {.lex_state = 7, .external_lex_state = 15}, + [2126] = {.lex_state = 52, .external_lex_state = 9}, + [2127] = {.lex_state = 52, .external_lex_state = 9}, [2128] = {.lex_state = 52, .external_lex_state = 9}, - [2129] = {.lex_state = 52, .external_lex_state = 12}, - [2130] = {.lex_state = 8, .external_lex_state = 15}, - [2131] = {.lex_state = 52, .external_lex_state = 13}, + [2129] = {.lex_state = 52, .external_lex_state = 15}, + [2130] = {.lex_state = 52, .external_lex_state = 9}, + [2131] = {.lex_state = 52, .external_lex_state = 15}, [2132] = {.lex_state = 52, .external_lex_state = 12}, - [2133] = {.lex_state = 52, .external_lex_state = 12}, - [2134] = {.lex_state = 52, .external_lex_state = 9}, + [2133] = {.lex_state = 52, .external_lex_state = 9}, + [2134] = {.lex_state = 52, .external_lex_state = 18}, [2135] = {.lex_state = 52, .external_lex_state = 9}, - [2136] = {.lex_state = 52, .external_lex_state = 9}, - [2137] = {.lex_state = 52, .external_lex_state = 12}, - [2138] = {.lex_state = 52, .external_lex_state = 12}, - [2139] = {.lex_state = 52, .external_lex_state = 12}, - [2140] = {.lex_state = 52, .external_lex_state = 13}, - [2141] = {.lex_state = 52, .external_lex_state = 12}, - [2142] = {.lex_state = 52, .external_lex_state = 12}, - [2143] = {.lex_state = 52, .external_lex_state = 13}, - [2144] = {.lex_state = 52, .external_lex_state = 12}, - [2145] = {.lex_state = 52, .external_lex_state = 13}, - [2146] = {.lex_state = 52, .external_lex_state = 13}, - [2147] = {.lex_state = 52, .external_lex_state = 12}, - [2148] = {.lex_state = 52, .external_lex_state = 12}, - [2149] = {.lex_state = 52, .external_lex_state = 9}, - [2150] = {.lex_state = 52, .external_lex_state = 9}, - [2151] = {.lex_state = 52, .external_lex_state = 12}, - [2152] = {.lex_state = 52, .external_lex_state = 12}, - [2153] = {.lex_state = 52, .external_lex_state = 12}, - [2154] = {.lex_state = 52, .external_lex_state = 12}, + [2136] = {.lex_state = 52, .external_lex_state = 15}, + [2137] = {.lex_state = 52, .external_lex_state = 15}, + [2138] = {.lex_state = 52, .external_lex_state = 9}, + [2139] = {.lex_state = 52, .external_lex_state = 9}, + [2140] = {.lex_state = 52, .external_lex_state = 9}, + [2141] = {.lex_state = 8, .external_lex_state = 15}, + [2142] = {.lex_state = 52, .external_lex_state = 18}, + [2143] = {.lex_state = 52, .external_lex_state = 12}, + [2144] = {.lex_state = 52, .external_lex_state = 18}, + [2145] = {.lex_state = 52, .external_lex_state = 9}, + [2146] = {.lex_state = 52, .external_lex_state = 15}, + [2147] = {.lex_state = 52, .external_lex_state = 18}, + [2148] = {.lex_state = 52, .external_lex_state = 13}, + [2149] = {.lex_state = 52, .external_lex_state = 18}, + [2150] = {.lex_state = 52, .external_lex_state = 14}, + [2151] = {.lex_state = 52, .external_lex_state = 13}, + [2152] = {.lex_state = 52, .external_lex_state = 15}, + [2153] = {.lex_state = 52, .external_lex_state = 15}, + [2154] = {.lex_state = 52, .external_lex_state = 15}, [2155] = {.lex_state = 52, .external_lex_state = 12}, - [2156] = {.lex_state = 52, .external_lex_state = 12}, - [2157] = {.lex_state = 52, .external_lex_state = 12}, - [2158] = {.lex_state = 52, .external_lex_state = 12}, - [2159] = {.lex_state = 52, .external_lex_state = 12}, - [2160] = {.lex_state = 52, .external_lex_state = 12}, - [2161] = {.lex_state = 52, .external_lex_state = 12}, - [2162] = {.lex_state = 52, .external_lex_state = 12}, + [2156] = {.lex_state = 52, .external_lex_state = 13}, + [2157] = {.lex_state = 52, .external_lex_state = 13}, + [2158] = {.lex_state = 52, .external_lex_state = 13}, + [2159] = {.lex_state = 52, .external_lex_state = 14}, + [2160] = {.lex_state = 52, .external_lex_state = 13}, + [2161] = {.lex_state = 52, .external_lex_state = 13}, + [2162] = {.lex_state = 52, .external_lex_state = 13}, [2163] = {.lex_state = 52, .external_lex_state = 13}, - [2164] = {.lex_state = 52, .external_lex_state = 18}, + [2164] = {.lex_state = 52, .external_lex_state = 13}, [2165] = {.lex_state = 52, .external_lex_state = 13}, [2166] = {.lex_state = 52, .external_lex_state = 13}, [2167] = {.lex_state = 52, .external_lex_state = 13}, - [2168] = {.lex_state = 52, .external_lex_state = 13}, - [2169] = {.lex_state = 52, .external_lex_state = 13}, - [2170] = {.lex_state = 52, .external_lex_state = 13}, - [2171] = {.lex_state = 52, .external_lex_state = 13}, - [2172] = {.lex_state = 52, .external_lex_state = 13}, - [2173] = {.lex_state = 52, .external_lex_state = 14}, - [2174] = {.lex_state = 52, .external_lex_state = 14}, - [2175] = {.lex_state = 52, .external_lex_state = 14}, + [2168] = {.lex_state = 52, .external_lex_state = 12}, + [2169] = {.lex_state = 52, .external_lex_state = 12}, + [2170] = {.lex_state = 52, .external_lex_state = 12}, + [2171] = {.lex_state = 52, .external_lex_state = 12}, + [2172] = {.lex_state = 52, .external_lex_state = 12}, + [2173] = {.lex_state = 52, .external_lex_state = 12}, + [2174] = {.lex_state = 52, .external_lex_state = 12}, + [2175] = {.lex_state = 52, .external_lex_state = 12}, [2176] = {.lex_state = 52, .external_lex_state = 13}, [2177] = {.lex_state = 52, .external_lex_state = 14}, - [2178] = {.lex_state = 52, .external_lex_state = 15}, - [2179] = {.lex_state = 52, .external_lex_state = 9}, + [2178] = {.lex_state = 52, .external_lex_state = 13}, + [2179] = {.lex_state = 52, .external_lex_state = 12}, [2180] = {.lex_state = 52, .external_lex_state = 13}, - [2181] = {.lex_state = 52, .external_lex_state = 13}, - [2182] = {.lex_state = 52, .external_lex_state = 18}, - [2183] = {.lex_state = 52, .external_lex_state = 13}, - [2184] = {.lex_state = 52, .external_lex_state = 14}, - [2185] = {.lex_state = 52, .external_lex_state = 9}, - [2186] = {.lex_state = 52, .external_lex_state = 9}, - [2187] = {.lex_state = 52, .external_lex_state = 15}, - [2188] = {.lex_state = 52, .external_lex_state = 13}, - [2189] = {.lex_state = 52, .external_lex_state = 9}, - [2190] = {.lex_state = 52, .external_lex_state = 9}, - [2191] = {.lex_state = 52, .external_lex_state = 13}, - [2192] = {.lex_state = 52, .external_lex_state = 13}, + [2181] = {.lex_state = 52, .external_lex_state = 12}, + [2182] = {.lex_state = 52, .external_lex_state = 13}, + [2183] = {.lex_state = 52, .external_lex_state = 12}, + [2184] = {.lex_state = 52, .external_lex_state = 12}, + [2185] = {.lex_state = 52, .external_lex_state = 12}, + [2186] = {.lex_state = 52, .external_lex_state = 12}, + [2187] = {.lex_state = 52, .external_lex_state = 13}, + [2188] = {.lex_state = 52, .external_lex_state = 12}, + [2189] = {.lex_state = 52, .external_lex_state = 12}, + [2190] = {.lex_state = 52, .external_lex_state = 12}, + [2191] = {.lex_state = 52, .external_lex_state = 12}, + [2192] = {.lex_state = 52, .external_lex_state = 12}, [2193] = {.lex_state = 52, .external_lex_state = 13}, - [2194] = {.lex_state = 52, .external_lex_state = 13}, - [2195] = {.lex_state = 52, .external_lex_state = 14}, - [2196] = {.lex_state = 52, .external_lex_state = 14}, - [2197] = {.lex_state = 52, .external_lex_state = 9}, + [2194] = {.lex_state = 52, .external_lex_state = 12}, + [2195] = {.lex_state = 52, .external_lex_state = 13}, + [2196] = {.lex_state = 52, .external_lex_state = 13}, + [2197] = {.lex_state = 52, .external_lex_state = 12}, [2198] = {.lex_state = 52, .external_lex_state = 14}, - [2199] = {.lex_state = 52, .external_lex_state = 14}, - [2200] = {.lex_state = 52, .external_lex_state = 14}, - [2201] = {.lex_state = 52, .external_lex_state = 14}, - [2202] = {.lex_state = 52, .external_lex_state = 15}, - [2203] = {.lex_state = 52, .external_lex_state = 18}, - [2204] = {.lex_state = 52, .external_lex_state = 14}, - [2205] = {.lex_state = 7, .external_lex_state = 15}, - [2206] = {.lex_state = 7, .external_lex_state = 15}, - [2207] = {.lex_state = 52, .external_lex_state = 14}, - [2208] = {.lex_state = 52, .external_lex_state = 15}, - [2209] = {.lex_state = 52, .external_lex_state = 13}, - [2210] = {.lex_state = 52, .external_lex_state = 13}, - [2211] = {.lex_state = 52, .external_lex_state = 12}, - [2212] = {.lex_state = 52, .external_lex_state = 15}, - [2213] = {.lex_state = 52, .external_lex_state = 9}, - [2214] = {.lex_state = 52, .external_lex_state = 15}, + [2199] = {.lex_state = 52, .external_lex_state = 12}, + [2200] = {.lex_state = 52, .external_lex_state = 13}, + [2201] = {.lex_state = 52, .external_lex_state = 13}, + [2202] = {.lex_state = 52, .external_lex_state = 12}, + [2203] = {.lex_state = 52, .external_lex_state = 13}, + [2204] = {.lex_state = 52, .external_lex_state = 13}, + [2205] = {.lex_state = 52, .external_lex_state = 13}, + [2206] = {.lex_state = 52, .external_lex_state = 13}, + [2207] = {.lex_state = 52, .external_lex_state = 13}, + [2208] = {.lex_state = 52, .external_lex_state = 14}, + [2209] = {.lex_state = 52, .external_lex_state = 14}, + [2210] = {.lex_state = 52, .external_lex_state = 14}, + [2211] = {.lex_state = 52, .external_lex_state = 14}, + [2212] = {.lex_state = 52, .external_lex_state = 13}, + [2213] = {.lex_state = 52, .external_lex_state = 14}, + [2214] = {.lex_state = 52, .external_lex_state = 14}, [2215] = {.lex_state = 52, .external_lex_state = 14}, [2216] = {.lex_state = 52, .external_lex_state = 14}, - [2217] = {.lex_state = 52, .external_lex_state = 18}, - [2218] = {.lex_state = 52, .external_lex_state = 9}, + [2217] = {.lex_state = 52, .external_lex_state = 14}, + [2218] = {.lex_state = 52, .external_lex_state = 14}, [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 = 18}, - [2224] = {.lex_state = 52, .external_lex_state = 14}, - [2225] = {.lex_state = 52, .external_lex_state = 9}, + [2222] = {.lex_state = 52, .external_lex_state = 13}, + [2223] = {.lex_state = 52, .external_lex_state = 13}, + [2224] = {.lex_state = 52, .external_lex_state = 13}, + [2225] = {.lex_state = 52, .external_lex_state = 14}, [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 = 14}, + [2228] = {.lex_state = 52, .external_lex_state = 13}, + [2229] = {.lex_state = 52, .external_lex_state = 13}, [2230] = {.lex_state = 52, .external_lex_state = 14}, [2231] = {.lex_state = 52, .external_lex_state = 14}, - [2232] = {.lex_state = 52, .external_lex_state = 15}, - [2233] = {.lex_state = 52, .external_lex_state = 15}, - [2234] = {.lex_state = 52, .external_lex_state = 15}, + [2232] = {.lex_state = 52, .external_lex_state = 13}, + [2233] = {.lex_state = 52, .external_lex_state = 14}, + [2234] = {.lex_state = 52, .external_lex_state = 13}, [2235] = {.lex_state = 52, .external_lex_state = 13}, - [2236] = {.lex_state = 52, .external_lex_state = 15}, - [2237] = {.lex_state = 52, .external_lex_state = 13}, - [2238] = {.lex_state = 52, .external_lex_state = 15}, - [2239] = {.lex_state = 52, .external_lex_state = 15}, - [2240] = {.lex_state = 52, .external_lex_state = 14}, - [2241] = {.lex_state = 52, .external_lex_state = 14}, - [2242] = {.lex_state = 52, .external_lex_state = 13}, - [2243] = {.lex_state = 52, .external_lex_state = 12}, - [2244] = {.lex_state = 52, .external_lex_state = 13}, - [2245] = {.lex_state = 52, .external_lex_state = 12}, - [2246] = {.lex_state = 52, .external_lex_state = 14}, + [2236] = {.lex_state = 52, .external_lex_state = 14}, + [2237] = {.lex_state = 52, .external_lex_state = 14}, + [2238] = {.lex_state = 52, .external_lex_state = 14}, + [2239] = {.lex_state = 52, .external_lex_state = 13}, + [2240] = {.lex_state = 52, .external_lex_state = 15}, + [2241] = {.lex_state = 52, .external_lex_state = 15}, + [2242] = {.lex_state = 52, .external_lex_state = 15}, + [2243] = {.lex_state = 52, .external_lex_state = 9}, + [2244] = {.lex_state = 52, .external_lex_state = 12}, + [2245] = {.lex_state = 52, .external_lex_state = 14}, + [2246] = {.lex_state = 52, .external_lex_state = 15}, [2247] = {.lex_state = 52, .external_lex_state = 13}, - [2248] = {.lex_state = 52, .external_lex_state = 14}, - [2249] = {.lex_state = 52, .external_lex_state = 15}, - [2250] = {.lex_state = 52, .external_lex_state = 12}, - [2251] = {.lex_state = 52, .external_lex_state = 12}, - [2252] = {.lex_state = 52, .external_lex_state = 12}, - [2253] = {.lex_state = 52, .external_lex_state = 12}, + [2248] = {.lex_state = 52, .external_lex_state = 12}, + [2249] = {.lex_state = 52, .external_lex_state = 9}, + [2250] = {.lex_state = 52, .external_lex_state = 13}, + [2251] = {.lex_state = 52, .external_lex_state = 13}, + [2252] = {.lex_state = 52, .external_lex_state = 9}, + [2253] = {.lex_state = 52, .external_lex_state = 13}, [2254] = {.lex_state = 52, .external_lex_state = 13}, - [2255] = {.lex_state = 52, .external_lex_state = 13}, - [2256] = {.lex_state = 52, .external_lex_state = 12}, - [2257] = {.lex_state = 52, .external_lex_state = 12}, - [2258] = {.lex_state = 52, .external_lex_state = 15}, - [2259] = {.lex_state = 9, .external_lex_state = 17}, - [2260] = {.lex_state = 52, .external_lex_state = 9}, - [2261] = {.lex_state = 52, .external_lex_state = 13}, - [2262] = {.lex_state = 8, .external_lex_state = 15}, - [2263] = {.lex_state = 52, .external_lex_state = 9}, - [2264] = {.lex_state = 52, .external_lex_state = 13}, - [2265] = {.lex_state = 3, .external_lex_state = 12}, + [2255] = {.lex_state = 52, .external_lex_state = 15}, + [2256] = {.lex_state = 52, .external_lex_state = 15}, + [2257] = {.lex_state = 52, .external_lex_state = 9}, + [2258] = {.lex_state = 52, .external_lex_state = 12}, + [2259] = {.lex_state = 52, .external_lex_state = 12}, + [2260] = {.lex_state = 52, .external_lex_state = 15}, + [2261] = {.lex_state = 52, .external_lex_state = 9}, + [2262] = {.lex_state = 52, .external_lex_state = 12}, + [2263] = {.lex_state = 52, .external_lex_state = 13}, + [2264] = {.lex_state = 52, .external_lex_state = 15}, + [2265] = {.lex_state = 52, .external_lex_state = 13}, [2266] = {.lex_state = 52, .external_lex_state = 13}, - [2267] = {.lex_state = 52, .external_lex_state = 12}, - [2268] = {.lex_state = 52, .external_lex_state = 9}, - [2269] = {.lex_state = 52, .external_lex_state = 15}, + [2267] = {.lex_state = 52, .external_lex_state = 14}, + [2268] = {.lex_state = 52, .external_lex_state = 15}, + [2269] = {.lex_state = 52, .external_lex_state = 14}, [2270] = {.lex_state = 52, .external_lex_state = 15}, - [2271] = {.lex_state = 52, .external_lex_state = 12}, - [2272] = {.lex_state = 52, .external_lex_state = 15}, - [2273] = {.lex_state = 52, .external_lex_state = 13}, + [2271] = {.lex_state = 52, .external_lex_state = 13}, + [2272] = {.lex_state = 52, .external_lex_state = 9}, + [2273] = {.lex_state = 52, .external_lex_state = 12}, [2274] = {.lex_state = 52, .external_lex_state = 13}, - [2275] = {.lex_state = 52, .external_lex_state = 15}, + [2275] = {.lex_state = 52, .external_lex_state = 12}, [2276] = {.lex_state = 52, .external_lex_state = 13}, - [2277] = {.lex_state = 52, .external_lex_state = 14}, - [2278] = {.lex_state = 3, .external_lex_state = 12}, - [2279] = {.lex_state = 52, .external_lex_state = 12}, - [2280] = {.lex_state = 9, .external_lex_state = 17}, - [2281] = {.lex_state = 3, .external_lex_state = 12}, + [2277] = {.lex_state = 52, .external_lex_state = 15}, + [2278] = {.lex_state = 52, .external_lex_state = 13}, + [2279] = {.lex_state = 52, .external_lex_state = 15}, + [2280] = {.lex_state = 52, .external_lex_state = 14}, + [2281] = {.lex_state = 52, .external_lex_state = 14}, [2282] = {.lex_state = 52, .external_lex_state = 13}, - [2283] = {.lex_state = 52, .external_lex_state = 12}, - [2284] = {.lex_state = 52, .external_lex_state = 13}, + [2283] = {.lex_state = 52, .external_lex_state = 13}, + [2284] = {.lex_state = 52, .external_lex_state = 12}, [2285] = {.lex_state = 52, .external_lex_state = 14}, - [2286] = {.lex_state = 52, .external_lex_state = 14}, + [2286] = {.lex_state = 52, .external_lex_state = 9}, [2287] = {.lex_state = 52, .external_lex_state = 14}, - [2288] = {.lex_state = 3, .external_lex_state = 12}, - [2289] = {.lex_state = 52, .external_lex_state = 12}, - [2290] = {.lex_state = 52, .external_lex_state = 15}, - [2291] = {.lex_state = 52, .external_lex_state = 12}, - [2292] = {.lex_state = 52, .external_lex_state = 13}, - [2293] = {.lex_state = 8, .external_lex_state = 15}, - [2294] = {.lex_state = 52, .external_lex_state = 9}, - [2295] = {.lex_state = 52, .external_lex_state = 13}, - [2296] = {.lex_state = 52, .external_lex_state = 13}, - [2297] = {.lex_state = 52, .external_lex_state = 12}, - [2298] = {.lex_state = 52, .external_lex_state = 13}, - [2299] = {.lex_state = 52, .external_lex_state = 9}, - [2300] = {.lex_state = 52, .external_lex_state = 9}, + [2288] = {.lex_state = 52, .external_lex_state = 14}, + [2289] = {.lex_state = 52, .external_lex_state = 14}, + [2290] = {.lex_state = 52, .external_lex_state = 13}, + [2291] = {.lex_state = 52, .external_lex_state = 13}, + [2292] = {.lex_state = 8, .external_lex_state = 15}, + [2293] = {.lex_state = 52, .external_lex_state = 9}, + [2294] = {.lex_state = 8, .external_lex_state = 15}, + [2295] = {.lex_state = 52, .external_lex_state = 14}, + [2296] = {.lex_state = 52, .external_lex_state = 14}, + [2297] = {.lex_state = 3, .external_lex_state = 12}, + [2298] = {.lex_state = 52, .external_lex_state = 9}, + [2299] = {.lex_state = 52, .external_lex_state = 12}, + [2300] = {.lex_state = 52, .external_lex_state = 12}, [2301] = {.lex_state = 52, .external_lex_state = 13}, - [2302] = {.lex_state = 52, .external_lex_state = 12}, + [2302] = {.lex_state = 8, .external_lex_state = 15}, [2303] = {.lex_state = 52, .external_lex_state = 13}, - [2304] = {.lex_state = 52, .external_lex_state = 15}, - [2305] = {.lex_state = 52, .external_lex_state = 12}, - [2306] = {.lex_state = 52, .external_lex_state = 9}, - [2307] = {.lex_state = 52, .external_lex_state = 12}, - [2308] = {.lex_state = 52, .external_lex_state = 9}, - [2309] = {.lex_state = 52, .external_lex_state = 13}, - [2310] = {.lex_state = 52, .external_lex_state = 9}, + [2304] = {.lex_state = 52, .external_lex_state = 13}, + [2305] = {.lex_state = 52, .external_lex_state = 13}, + [2306] = {.lex_state = 52, .external_lex_state = 12}, + [2307] = {.lex_state = 52, .external_lex_state = 13}, + [2308] = {.lex_state = 52, .external_lex_state = 13}, + [2309] = {.lex_state = 52, .external_lex_state = 14}, + [2310] = {.lex_state = 8, .external_lex_state = 15}, [2311] = {.lex_state = 52, .external_lex_state = 14}, - [2312] = {.lex_state = 52, .external_lex_state = 13}, - [2313] = {.lex_state = 52, .external_lex_state = 12}, - [2314] = {.lex_state = 52, .external_lex_state = 13}, - [2315] = {.lex_state = 52, .external_lex_state = 13}, + [2312] = {.lex_state = 52, .external_lex_state = 12}, + [2313] = {.lex_state = 52, .external_lex_state = 13}, + [2314] = {.lex_state = 52, .external_lex_state = 12}, + [2315] = {.lex_state = 52, .external_lex_state = 12}, [2316] = {.lex_state = 52, .external_lex_state = 13}, - [2317] = {.lex_state = 52, .external_lex_state = 13}, - [2318] = {.lex_state = 52, .external_lex_state = 13}, - [2319] = {.lex_state = 52, .external_lex_state = 12}, - [2320] = {.lex_state = 52, .external_lex_state = 14}, - [2321] = {.lex_state = 52, .external_lex_state = 14}, - [2322] = {.lex_state = 52, .external_lex_state = 14}, - [2323] = {.lex_state = 52, .external_lex_state = 13}, + [2317] = {.lex_state = 52, .external_lex_state = 15}, + [2318] = {.lex_state = 52, .external_lex_state = 12}, + [2319] = {.lex_state = 52, .external_lex_state = 15}, + [2320] = {.lex_state = 52, .external_lex_state = 15}, + [2321] = {.lex_state = 52, .external_lex_state = 12}, + [2322] = {.lex_state = 52, .external_lex_state = 13}, + [2323] = {.lex_state = 3, .external_lex_state = 12}, [2324] = {.lex_state = 52, .external_lex_state = 13}, - [2325] = {.lex_state = 52, .external_lex_state = 13}, - [2326] = {.lex_state = 52, .external_lex_state = 13}, - [2327] = {.lex_state = 52, .external_lex_state = 14}, - [2328] = {.lex_state = 52, .external_lex_state = 14}, - [2329] = {.lex_state = 52, .external_lex_state = 14}, - [2330] = {.lex_state = 52, .external_lex_state = 14}, - [2331] = {.lex_state = 52, .external_lex_state = 19}, - [2332] = {.lex_state = 52, .external_lex_state = 12}, - [2333] = {.lex_state = 52, .external_lex_state = 14}, + [2325] = {.lex_state = 3, .external_lex_state = 12}, + [2326] = {.lex_state = 3, .external_lex_state = 12}, + [2327] = {.lex_state = 3, .external_lex_state = 12}, + [2328] = {.lex_state = 52, .external_lex_state = 19}, + [2329] = {.lex_state = 52, .external_lex_state = 15}, + [2330] = {.lex_state = 3, .external_lex_state = 12}, + [2331] = {.lex_state = 3, .external_lex_state = 12}, + [2332] = {.lex_state = 52, .external_lex_state = 14}, + [2333] = {.lex_state = 9, .external_lex_state = 17}, [2334] = {.lex_state = 52, .external_lex_state = 9}, - [2335] = {.lex_state = 52, .external_lex_state = 13}, + [2335] = {.lex_state = 52, .external_lex_state = 14}, [2336] = {.lex_state = 52, .external_lex_state = 13}, - [2337] = {.lex_state = 52, .external_lex_state = 13}, - [2338] = {.lex_state = 52, .external_lex_state = 13}, - [2339] = {.lex_state = 52, .external_lex_state = 9}, + [2337] = {.lex_state = 52, .external_lex_state = 15}, + [2338] = {.lex_state = 52, .external_lex_state = 15}, + [2339] = {.lex_state = 52, .external_lex_state = 13}, [2340] = {.lex_state = 52, .external_lex_state = 13}, - [2341] = {.lex_state = 52, .external_lex_state = 9}, - [2342] = {.lex_state = 52, .external_lex_state = 14}, - [2343] = {.lex_state = 52, .external_lex_state = 14}, - [2344] = {.lex_state = 52, .external_lex_state = 13}, - [2345] = {.lex_state = 52, .external_lex_state = 13}, + [2341] = {.lex_state = 52, .external_lex_state = 12}, + [2342] = {.lex_state = 52, .external_lex_state = 19}, + [2343] = {.lex_state = 52, .external_lex_state = 19}, + [2344] = {.lex_state = 52, .external_lex_state = 14}, + [2345] = {.lex_state = 52, .external_lex_state = 15}, [2346] = {.lex_state = 52, .external_lex_state = 15}, - [2347] = {.lex_state = 52, .external_lex_state = 12}, - [2348] = {.lex_state = 52, .external_lex_state = 12}, - [2349] = {.lex_state = 52, .external_lex_state = 14}, - [2350] = {.lex_state = 52, .external_lex_state = 9}, - [2351] = {.lex_state = 52, .external_lex_state = 13}, - [2352] = {.lex_state = 52, .external_lex_state = 12}, - [2353] = {.lex_state = 52, .external_lex_state = 13}, - [2354] = {.lex_state = 52, .external_lex_state = 13}, - [2355] = {.lex_state = 52, .external_lex_state = 13}, - [2356] = {.lex_state = 52, .external_lex_state = 13}, - [2357] = {.lex_state = 52, .external_lex_state = 12}, + [2347] = {.lex_state = 52, .external_lex_state = 13}, + [2348] = {.lex_state = 52, .external_lex_state = 15}, + [2349] = {.lex_state = 52, .external_lex_state = 15}, + [2350] = {.lex_state = 52, .external_lex_state = 12}, + [2351] = {.lex_state = 52, .external_lex_state = 14}, + [2352] = {.lex_state = 52, .external_lex_state = 14}, + [2353] = {.lex_state = 52, .external_lex_state = 14}, + [2354] = {.lex_state = 52, .external_lex_state = 12}, + [2355] = {.lex_state = 52, .external_lex_state = 9}, + [2356] = {.lex_state = 52, .external_lex_state = 15}, + [2357] = {.lex_state = 52, .external_lex_state = 14}, [2358] = {.lex_state = 52, .external_lex_state = 14}, - [2359] = {.lex_state = 52, .external_lex_state = 9}, - [2360] = {.lex_state = 52, .external_lex_state = 14}, + [2359] = {.lex_state = 52, .external_lex_state = 14}, + [2360] = {.lex_state = 52, .external_lex_state = 9}, [2361] = {.lex_state = 52, .external_lex_state = 13}, [2362] = {.lex_state = 52, .external_lex_state = 13}, - [2363] = {.lex_state = 52, .external_lex_state = 15}, + [2363] = {.lex_state = 52, .external_lex_state = 12}, [2364] = {.lex_state = 52, .external_lex_state = 14}, - [2365] = {.lex_state = 52, .external_lex_state = 14}, - [2366] = {.lex_state = 52, .external_lex_state = 19}, - [2367] = {.lex_state = 52, .external_lex_state = 13}, - [2368] = {.lex_state = 52, .external_lex_state = 13}, - [2369] = {.lex_state = 52, .external_lex_state = 15}, + [2365] = {.lex_state = 52, .external_lex_state = 12}, + [2366] = {.lex_state = 52, .external_lex_state = 13}, + [2367] = {.lex_state = 52, .external_lex_state = 14}, + [2368] = {.lex_state = 52, .external_lex_state = 14}, + [2369] = {.lex_state = 52, .external_lex_state = 13}, [2370] = {.lex_state = 52, .external_lex_state = 13}, - [2371] = {.lex_state = 9, .external_lex_state = 17}, - [2372] = {.lex_state = 52, .external_lex_state = 14}, - [2373] = {.lex_state = 52, .external_lex_state = 13}, - [2374] = {.lex_state = 52, .external_lex_state = 9}, + [2371] = {.lex_state = 52, .external_lex_state = 13}, + [2372] = {.lex_state = 52, .external_lex_state = 9}, + [2373] = {.lex_state = 52, .external_lex_state = 14}, + [2374] = {.lex_state = 3, .external_lex_state = 12}, [2375] = {.lex_state = 52, .external_lex_state = 13}, - [2376] = {.lex_state = 52, .external_lex_state = 9}, - [2377] = {.lex_state = 52, .external_lex_state = 13}, - [2378] = {.lex_state = 52, .external_lex_state = 14}, + [2376] = {.lex_state = 52, .external_lex_state = 13}, + [2377] = {.lex_state = 9, .external_lex_state = 17}, + [2378] = {.lex_state = 52, .external_lex_state = 13}, [2379] = {.lex_state = 52, .external_lex_state = 13}, - [2380] = {.lex_state = 52, .external_lex_state = 12}, + [2380] = {.lex_state = 52, .external_lex_state = 13}, [2381] = {.lex_state = 52, .external_lex_state = 13}, - [2382] = {.lex_state = 52, .external_lex_state = 14}, - [2383] = {.lex_state = 52, .external_lex_state = 13}, + [2382] = {.lex_state = 52, .external_lex_state = 13}, + [2383] = {.lex_state = 52, .external_lex_state = 14}, [2384] = {.lex_state = 52, .external_lex_state = 14}, - [2385] = {.lex_state = 52, .external_lex_state = 9}, - [2386] = {.lex_state = 52, .external_lex_state = 12}, - [2387] = {.lex_state = 52, .external_lex_state = 19}, - [2388] = {.lex_state = 52, .external_lex_state = 13}, + [2385] = {.lex_state = 52, .external_lex_state = 14}, + [2386] = {.lex_state = 52, .external_lex_state = 13}, + [2387] = {.lex_state = 52, .external_lex_state = 14}, + [2388] = {.lex_state = 52, .external_lex_state = 14}, [2389] = {.lex_state = 52, .external_lex_state = 13}, - [2390] = {.lex_state = 52, .external_lex_state = 19}, + [2390] = {.lex_state = 52, .external_lex_state = 13}, [2391] = {.lex_state = 52, .external_lex_state = 14}, - [2392] = {.lex_state = 52, .external_lex_state = 15}, - [2393] = {.lex_state = 52, .external_lex_state = 12}, + [2392] = {.lex_state = 9, .external_lex_state = 17}, + [2393] = {.lex_state = 52, .external_lex_state = 9}, [2394] = {.lex_state = 52, .external_lex_state = 13}, - [2395] = {.lex_state = 52, .external_lex_state = 13}, - [2396] = {.lex_state = 52, .external_lex_state = 12}, - [2397] = {.lex_state = 52, .external_lex_state = 14}, - [2398] = {.lex_state = 52, .external_lex_state = 14}, - [2399] = {.lex_state = 52, .external_lex_state = 15}, - [2400] = {.lex_state = 52, .external_lex_state = 9}, - [2401] = {.lex_state = 52, .external_lex_state = 19}, - [2402] = {.lex_state = 52, .external_lex_state = 13}, - [2403] = {.lex_state = 52, .external_lex_state = 15}, - [2404] = {.lex_state = 52, .external_lex_state = 14}, - [2405] = {.lex_state = 52, .external_lex_state = 9}, - [2406] = {.lex_state = 52, .external_lex_state = 12}, - [2407] = {.lex_state = 52, .external_lex_state = 14}, + [2395] = {.lex_state = 52, .external_lex_state = 14}, + [2396] = {.lex_state = 52, .external_lex_state = 13}, + [2397] = {.lex_state = 52, .external_lex_state = 13}, + [2398] = {.lex_state = 52, .external_lex_state = 15}, + [2399] = {.lex_state = 52, .external_lex_state = 13}, + [2400] = {.lex_state = 52, .external_lex_state = 12}, + [2401] = {.lex_state = 52, .external_lex_state = 13}, + [2402] = {.lex_state = 52, .external_lex_state = 12}, + [2403] = {.lex_state = 52, .external_lex_state = 13}, + [2404] = {.lex_state = 52, .external_lex_state = 9}, + [2405] = {.lex_state = 52, .external_lex_state = 12}, + [2406] = {.lex_state = 52, .external_lex_state = 13}, + [2407] = {.lex_state = 52, .external_lex_state = 13}, [2408] = {.lex_state = 52, .external_lex_state = 14}, - [2409] = {.lex_state = 52, .external_lex_state = 14}, + [2409] = {.lex_state = 52, .external_lex_state = 15}, [2410] = {.lex_state = 52, .external_lex_state = 14}, - [2411] = {.lex_state = 52, .external_lex_state = 15}, - [2412] = {.lex_state = 3, .external_lex_state = 12}, + [2411] = {.lex_state = 52, .external_lex_state = 12}, + [2412] = {.lex_state = 52, .external_lex_state = 12}, [2413] = {.lex_state = 52, .external_lex_state = 12}, - [2414] = {.lex_state = 52, .external_lex_state = 14}, - [2415] = {.lex_state = 52, .external_lex_state = 14}, - [2416] = {.lex_state = 52, .external_lex_state = 14}, - [2417] = {.lex_state = 52, .external_lex_state = 13}, + [2414] = {.lex_state = 52, .external_lex_state = 13}, + [2415] = {.lex_state = 52, .external_lex_state = 9}, + [2416] = {.lex_state = 52, .external_lex_state = 13}, + [2417] = {.lex_state = 52, .external_lex_state = 19}, [2418] = {.lex_state = 52, .external_lex_state = 13}, - [2419] = {.lex_state = 52, .external_lex_state = 13}, - [2420] = {.lex_state = 52, .external_lex_state = 12}, - [2421] = {.lex_state = 52, .external_lex_state = 12}, - [2422] = {.lex_state = 52, .external_lex_state = 13}, + [2419] = {.lex_state = 52, .external_lex_state = 19}, + [2420] = {.lex_state = 52, .external_lex_state = 13}, + [2421] = {.lex_state = 52, .external_lex_state = 15}, + [2422] = {.lex_state = 9, .external_lex_state = 17}, [2423] = {.lex_state = 52, .external_lex_state = 13}, - [2424] = {.lex_state = 52, .external_lex_state = 15}, - [2425] = {.lex_state = 52, .external_lex_state = 13}, - [2426] = {.lex_state = 3, .external_lex_state = 12}, - [2427] = {.lex_state = 52, .external_lex_state = 12}, - [2428] = {.lex_state = 52, .external_lex_state = 14}, - [2429] = {.lex_state = 52, .external_lex_state = 15}, - [2430] = {.lex_state = 52, .external_lex_state = 15}, - [2431] = {.lex_state = 52, .external_lex_state = 9}, - [2432] = {.lex_state = 52, .external_lex_state = 13}, - [2433] = {.lex_state = 52, .external_lex_state = 15}, + [2424] = {.lex_state = 52, .external_lex_state = 14}, + [2425] = {.lex_state = 52, .external_lex_state = 14}, + [2426] = {.lex_state = 52, .external_lex_state = 15}, + [2427] = {.lex_state = 52, .external_lex_state = 13}, + [2428] = {.lex_state = 52, .external_lex_state = 13}, + [2429] = {.lex_state = 52, .external_lex_state = 9}, + [2430] = {.lex_state = 52, .external_lex_state = 9}, + [2431] = {.lex_state = 52, .external_lex_state = 14}, + [2432] = {.lex_state = 52, .external_lex_state = 14}, + [2433] = {.lex_state = 52, .external_lex_state = 13}, [2434] = {.lex_state = 52, .external_lex_state = 13}, - [2435] = {.lex_state = 52, .external_lex_state = 13}, - [2436] = {.lex_state = 52, .external_lex_state = 9}, - [2437] = {.lex_state = 8, .external_lex_state = 15}, - [2438] = {.lex_state = 52, .external_lex_state = 13}, - [2439] = {.lex_state = 52, .external_lex_state = 13}, - [2440] = {.lex_state = 8, .external_lex_state = 15}, - [2441] = {.lex_state = 8, .external_lex_state = 15}, - [2442] = {.lex_state = 8, .external_lex_state = 15}, + [2435] = {.lex_state = 52, .external_lex_state = 12}, + [2436] = {.lex_state = 52, .external_lex_state = 13}, + [2437] = {.lex_state = 52, .external_lex_state = 13}, + [2438] = {.lex_state = 52, .external_lex_state = 12}, + [2439] = {.lex_state = 52, .external_lex_state = 12}, + [2440] = {.lex_state = 52, .external_lex_state = 15}, + [2441] = {.lex_state = 52, .external_lex_state = 9}, + [2442] = {.lex_state = 52, .external_lex_state = 14}, [2443] = {.lex_state = 52, .external_lex_state = 13}, - [2444] = {.lex_state = 52, .external_lex_state = 14}, - [2445] = {.lex_state = 52, .external_lex_state = 14}, - [2446] = {.lex_state = 52, .external_lex_state = 14}, + [2444] = {.lex_state = 52, .external_lex_state = 12}, + [2445] = {.lex_state = 52, .external_lex_state = 9}, + [2446] = {.lex_state = 52, .external_lex_state = 12}, [2447] = {.lex_state = 52, .external_lex_state = 13}, - [2448] = {.lex_state = 52, .external_lex_state = 13}, - [2449] = {.lex_state = 8, .external_lex_state = 15}, - [2450] = {.lex_state = 52, .external_lex_state = 15}, - [2451] = {.lex_state = 52, .external_lex_state = 15}, - [2452] = {.lex_state = 52, .external_lex_state = 9}, - [2453] = {.lex_state = 52, .external_lex_state = 15}, + [2448] = {.lex_state = 52, .external_lex_state = 14}, + [2449] = {.lex_state = 52, .external_lex_state = 9}, + [2450] = {.lex_state = 52, .external_lex_state = 13}, + [2451] = {.lex_state = 52, .external_lex_state = 14}, + [2452] = {.lex_state = 3, .external_lex_state = 12}, + [2453] = {.lex_state = 52, .external_lex_state = 9}, [2454] = {.lex_state = 52, .external_lex_state = 12}, - [2455] = {.lex_state = 52, .external_lex_state = 14}, - [2456] = {.lex_state = 52, .external_lex_state = 19}, - [2457] = {.lex_state = 52, .external_lex_state = 15}, + [2455] = {.lex_state = 52, .external_lex_state = 15}, + [2456] = {.lex_state = 52, .external_lex_state = 12}, + [2457] = {.lex_state = 52, .external_lex_state = 12}, [2458] = {.lex_state = 52, .external_lex_state = 15}, - [2459] = {.lex_state = 52, .external_lex_state = 12}, - [2460] = {.lex_state = 52, .external_lex_state = 9}, - [2461] = {.lex_state = 52, .external_lex_state = 14}, - [2462] = {.lex_state = 52, .external_lex_state = 12}, - [2463] = {.lex_state = 52, .external_lex_state = 14}, + [2459] = {.lex_state = 52, .external_lex_state = 15}, + [2460] = {.lex_state = 52, .external_lex_state = 13}, + [2461] = {.lex_state = 52, .external_lex_state = 19}, + [2462] = {.lex_state = 52, .external_lex_state = 13}, + [2463] = {.lex_state = 52, .external_lex_state = 13}, [2464] = {.lex_state = 52, .external_lex_state = 12}, - [2465] = {.lex_state = 52, .external_lex_state = 13}, - [2466] = {.lex_state = 52, .external_lex_state = 13}, - [2467] = {.lex_state = 52, .external_lex_state = 12}, - [2468] = {.lex_state = 52, .external_lex_state = 13}, - [2469] = {.lex_state = 52, .external_lex_state = 14}, - [2470] = {.lex_state = 52, .external_lex_state = 15}, - [2471] = {.lex_state = 52, .external_lex_state = 19}, - [2472] = {.lex_state = 52, .external_lex_state = 13}, + [2465] = {.lex_state = 52, .external_lex_state = 12}, + [2466] = {.lex_state = 52, .external_lex_state = 14}, + [2467] = {.lex_state = 52, .external_lex_state = 14}, + [2468] = {.lex_state = 52, .external_lex_state = 14}, + [2469] = {.lex_state = 52, .external_lex_state = 13}, + [2470] = {.lex_state = 8, .external_lex_state = 15}, + [2471] = {.lex_state = 52, .external_lex_state = 13}, + [2472] = {.lex_state = 52, .external_lex_state = 14}, [2473] = {.lex_state = 52, .external_lex_state = 13}, - [2474] = {.lex_state = 52, .external_lex_state = 14}, + [2474] = {.lex_state = 52, .external_lex_state = 13}, [2475] = {.lex_state = 52, .external_lex_state = 14}, - [2476] = {.lex_state = 9, .external_lex_state = 17}, - [2477] = {.lex_state = 52, .external_lex_state = 14}, - [2478] = {.lex_state = 52, .external_lex_state = 15}, - [2479] = {.lex_state = 52, .external_lex_state = 13}, - [2480] = {.lex_state = 52, .external_lex_state = 14}, - [2481] = {.lex_state = 52, .external_lex_state = 19}, - [2482] = {.lex_state = 52, .external_lex_state = 13}, - [2483] = {.lex_state = 52, .external_lex_state = 15}, - [2484] = {.lex_state = 8, .external_lex_state = 15}, - [2485] = {.lex_state = 52, .external_lex_state = 15}, - [2486] = {.lex_state = 52, .external_lex_state = 13}, - [2487] = {.lex_state = 52, .external_lex_state = 13}, - [2488] = {.lex_state = 9, .external_lex_state = 17}, - [2489] = {.lex_state = 52, .external_lex_state = 13}, - [2490] = {.lex_state = 3, .external_lex_state = 12}, - [2491] = {.lex_state = 3, .external_lex_state = 12}, - [2492] = {.lex_state = 3, .external_lex_state = 12}, - [2493] = {.lex_state = 52, .external_lex_state = 15}, - [2494] = {.lex_state = 52, .external_lex_state = 15}, - [2495] = {.lex_state = 52, .external_lex_state = 15}, - [2496] = {.lex_state = 52, .external_lex_state = 14}, + [2476] = {.lex_state = 52, .external_lex_state = 14}, + [2477] = {.lex_state = 52, .external_lex_state = 13}, + [2478] = {.lex_state = 52, .external_lex_state = 12}, + [2479] = {.lex_state = 52, .external_lex_state = 15}, + [2480] = {.lex_state = 52, .external_lex_state = 19}, + [2481] = {.lex_state = 52, .external_lex_state = 14}, + [2482] = {.lex_state = 9, .external_lex_state = 17}, + [2483] = {.lex_state = 8, .external_lex_state = 15}, + [2484] = {.lex_state = 52, .external_lex_state = 14}, + [2485] = {.lex_state = 52, .external_lex_state = 14}, + [2486] = {.lex_state = 8, .external_lex_state = 15}, + [2487] = {.lex_state = 52, .external_lex_state = 19}, + [2488] = {.lex_state = 8, .external_lex_state = 15}, + [2489] = {.lex_state = 52, .external_lex_state = 9}, + [2490] = {.lex_state = 52, .external_lex_state = 13}, + [2491] = {.lex_state = 52, .external_lex_state = 13}, + [2492] = {.lex_state = 52, .external_lex_state = 13}, + [2493] = {.lex_state = 52, .external_lex_state = 12}, + [2494] = {.lex_state = 52, .external_lex_state = 13}, + [2495] = {.lex_state = 52, .external_lex_state = 9}, + [2496] = {.lex_state = 52, .external_lex_state = 13}, [2497] = {.lex_state = 52, .external_lex_state = 12}, - [2498] = {.lex_state = 52, .external_lex_state = 9}, - [2499] = {.lex_state = 9, .external_lex_state = 15}, - [2500] = {.lex_state = 52, .external_lex_state = 15}, - [2501] = {.lex_state = 52, .external_lex_state = 15}, + [2498] = {.lex_state = 52, .external_lex_state = 14}, + [2499] = {.lex_state = 52, .external_lex_state = 9}, + [2500] = {.lex_state = 52, .external_lex_state = 9}, + [2501] = {.lex_state = 52, .external_lex_state = 9}, [2502] = {.lex_state = 52, .external_lex_state = 14}, - [2503] = {.lex_state = 52, .external_lex_state = 14}, - [2504] = {.lex_state = 52, .external_lex_state = 15}, - [2505] = {.lex_state = 52, .external_lex_state = 12}, - [2506] = {.lex_state = 52, .external_lex_state = 12}, - [2507] = {.lex_state = 52, .external_lex_state = 9}, - [2508] = {.lex_state = 52, .external_lex_state = 9}, - [2509] = {.lex_state = 52, .external_lex_state = 12}, - [2510] = {.lex_state = 52, .external_lex_state = 15}, - [2511] = {.lex_state = 52, .external_lex_state = 18}, - [2512] = {.lex_state = 52, .external_lex_state = 15}, + [2503] = {.lex_state = 52, .external_lex_state = 9}, + [2504] = {.lex_state = 52, .external_lex_state = 9}, + [2505] = {.lex_state = 52, .external_lex_state = 9}, + [2506] = {.lex_state = 52, .external_lex_state = 9}, + [2507] = {.lex_state = 52, .external_lex_state = 15}, + [2508] = {.lex_state = 52, .external_lex_state = 13}, + [2509] = {.lex_state = 52, .external_lex_state = 15}, + [2510] = {.lex_state = 52, .external_lex_state = 12}, + [2511] = {.lex_state = 52, .external_lex_state = 13}, + [2512] = {.lex_state = 52, .external_lex_state = 9}, [2513] = {.lex_state = 52, .external_lex_state = 9}, - [2514] = {.lex_state = 52, .external_lex_state = 14}, - [2515] = {.lex_state = 52, .external_lex_state = 13}, - [2516] = {.lex_state = 52, .external_lex_state = 18}, - [2517] = {.lex_state = 52, .external_lex_state = 18}, - [2518] = {.lex_state = 52, .external_lex_state = 18}, - [2519] = {.lex_state = 52, .external_lex_state = 9}, - [2520] = {.lex_state = 9, .external_lex_state = 15}, - [2521] = {.lex_state = 52, .external_lex_state = 9}, - [2522] = {.lex_state = 52, .external_lex_state = 15}, - [2523] = {.lex_state = 52, .external_lex_state = 18}, - [2524] = {.lex_state = 52, .external_lex_state = 18}, - [2525] = {.lex_state = 52, .external_lex_state = 18}, - [2526] = {.lex_state = 52, .external_lex_state = 18}, - [2527] = {.lex_state = 52, .external_lex_state = 9}, - [2528] = {.lex_state = 52, .external_lex_state = 13}, - [2529] = {.lex_state = 52, .external_lex_state = 15}, - [2530] = {.lex_state = 52, .external_lex_state = 9}, - [2531] = {.lex_state = 52, .external_lex_state = 18}, - [2532] = {.lex_state = 52, .external_lex_state = 9}, - [2533] = {.lex_state = 52, .external_lex_state = 13}, - [2534] = {.lex_state = 52, .external_lex_state = 9}, - [2535] = {.lex_state = 52, .external_lex_state = 18}, - [2536] = {.lex_state = 9, .external_lex_state = 15}, - [2537] = {.lex_state = 52, .external_lex_state = 13}, + [2514] = {.lex_state = 52, .external_lex_state = 9}, + [2515] = {.lex_state = 52, .external_lex_state = 9}, + [2516] = {.lex_state = 52, .external_lex_state = 15}, + [2517] = {.lex_state = 52, .external_lex_state = 12}, + [2518] = {.lex_state = 52, .external_lex_state = 15}, + [2519] = {.lex_state = 52, .external_lex_state = 12}, + [2520] = {.lex_state = 52, .external_lex_state = 15}, + [2521] = {.lex_state = 52, .external_lex_state = 18}, + [2522] = {.lex_state = 52, .external_lex_state = 14}, + [2523] = {.lex_state = 9, .external_lex_state = 15}, + [2524] = {.lex_state = 52, .external_lex_state = 15}, + [2525] = {.lex_state = 52, .external_lex_state = 15}, + [2526] = {.lex_state = 52, .external_lex_state = 15}, + [2527] = {.lex_state = 9, .external_lex_state = 15}, + [2528] = {.lex_state = 52, .external_lex_state = 9}, + [2529] = {.lex_state = 52, .external_lex_state = 14}, + [2530] = {.lex_state = 52, .external_lex_state = 14}, + [2531] = {.lex_state = 52, .external_lex_state = 15}, + [2532] = {.lex_state = 52, .external_lex_state = 14}, + [2533] = {.lex_state = 52, .external_lex_state = 15}, + [2534] = {.lex_state = 52, .external_lex_state = 18}, + [2535] = {.lex_state = 52, .external_lex_state = 14}, + [2536] = {.lex_state = 52, .external_lex_state = 15}, + [2537] = {.lex_state = 52, .external_lex_state = 15}, [2538] = {.lex_state = 52, .external_lex_state = 15}, [2539] = {.lex_state = 52, .external_lex_state = 15}, - [2540] = {.lex_state = 52, .external_lex_state = 12}, - [2541] = {.lex_state = 52, .external_lex_state = 9}, - [2542] = {.lex_state = 52, .external_lex_state = 13}, + [2540] = {.lex_state = 52, .external_lex_state = 15}, + [2541] = {.lex_state = 9, .external_lex_state = 15}, + [2542] = {.lex_state = 52, .external_lex_state = 15}, [2543] = {.lex_state = 9, .external_lex_state = 15}, - [2544] = {.lex_state = 52, .external_lex_state = 15}, + [2544] = {.lex_state = 52, .external_lex_state = 18}, [2545] = {.lex_state = 9, .external_lex_state = 15}, - [2546] = {.lex_state = 52, .external_lex_state = 15}, - [2547] = {.lex_state = 52, .external_lex_state = 15}, - [2548] = {.lex_state = 52, .external_lex_state = 14}, - [2549] = {.lex_state = 52, .external_lex_state = 15}, - [2550] = {.lex_state = 52, .external_lex_state = 15}, - [2551] = {.lex_state = 9, .external_lex_state = 15}, - [2552] = {.lex_state = 52, .external_lex_state = 13}, - [2553] = {.lex_state = 52, .external_lex_state = 9}, - [2554] = {.lex_state = 52, .external_lex_state = 15}, - [2555] = {.lex_state = 52, .external_lex_state = 13}, - [2556] = {.lex_state = 52, .external_lex_state = 14}, - [2557] = {.lex_state = 52, .external_lex_state = 13}, - [2558] = {.lex_state = 52, .external_lex_state = 13}, - [2559] = {.lex_state = 52, .external_lex_state = 14}, - [2560] = {.lex_state = 52, .external_lex_state = 14}, - [2561] = {.lex_state = 9, .external_lex_state = 15}, - [2562] = {.lex_state = 52, .external_lex_state = 18}, - [2563] = {.lex_state = 9, .external_lex_state = 15}, - [2564] = {.lex_state = 9, .external_lex_state = 15}, - [2565] = {.lex_state = 52, .external_lex_state = 15}, + [2546] = {.lex_state = 52, .external_lex_state = 13}, + [2547] = {.lex_state = 9, .external_lex_state = 15}, + [2548] = {.lex_state = 52, .external_lex_state = 13}, + [2549] = {.lex_state = 52, .external_lex_state = 14}, + [2550] = {.lex_state = 52, .external_lex_state = 18}, + [2551] = {.lex_state = 52, .external_lex_state = 15}, + [2552] = {.lex_state = 9, .external_lex_state = 15}, + [2553] = {.lex_state = 52, .external_lex_state = 14}, + [2554] = {.lex_state = 52, .external_lex_state = 14}, + [2555] = {.lex_state = 52, .external_lex_state = 18}, + [2556] = {.lex_state = 52, .external_lex_state = 9}, + [2557] = {.lex_state = 52, .external_lex_state = 9}, + [2558] = {.lex_state = 52, .external_lex_state = 9}, + [2559] = {.lex_state = 52, .external_lex_state = 13}, + [2560] = {.lex_state = 52, .external_lex_state = 18}, + [2561] = {.lex_state = 52, .external_lex_state = 13}, + [2562] = {.lex_state = 52, .external_lex_state = 13}, + [2563] = {.lex_state = 52, .external_lex_state = 13}, + [2564] = {.lex_state = 52, .external_lex_state = 15}, + [2565] = {.lex_state = 52, .external_lex_state = 12}, [2566] = {.lex_state = 52, .external_lex_state = 15}, - [2567] = {.lex_state = 9, .external_lex_state = 15}, + [2567] = {.lex_state = 52, .external_lex_state = 13}, [2568] = {.lex_state = 52, .external_lex_state = 15}, - [2569] = {.lex_state = 52, .external_lex_state = 13}, - [2570] = {.lex_state = 52, .external_lex_state = 14}, + [2569] = {.lex_state = 52, .external_lex_state = 12}, + [2570] = {.lex_state = 52, .external_lex_state = 13}, [2571] = {.lex_state = 52, .external_lex_state = 9}, - [2572] = {.lex_state = 52, .external_lex_state = 18}, + [2572] = {.lex_state = 52, .external_lex_state = 15}, [2573] = {.lex_state = 52, .external_lex_state = 13}, [2574] = {.lex_state = 52, .external_lex_state = 18}, - [2575] = {.lex_state = 52, .external_lex_state = 12}, + [2575] = {.lex_state = 52, .external_lex_state = 13}, [2576] = {.lex_state = 52, .external_lex_state = 18}, - [2577] = {.lex_state = 52, .external_lex_state = 15}, + [2577] = {.lex_state = 9, .external_lex_state = 15}, [2578] = {.lex_state = 52, .external_lex_state = 9}, [2579] = {.lex_state = 52, .external_lex_state = 18}, - [2580] = {.lex_state = 52, .external_lex_state = 15}, - [2581] = {.lex_state = 52, .external_lex_state = 18}, - [2582] = {.lex_state = 52, .external_lex_state = 13}, - [2583] = {.lex_state = 52, .external_lex_state = 13}, - [2584] = {.lex_state = 52, .external_lex_state = 9}, - [2585] = {.lex_state = 52, .external_lex_state = 9}, - [2586] = {.lex_state = 52, .external_lex_state = 9}, - [2587] = {.lex_state = 52, .external_lex_state = 15}, - [2588] = {.lex_state = 52, .external_lex_state = 15}, - [2589] = {.lex_state = 52, .external_lex_state = 18}, - [2590] = {.lex_state = 52, .external_lex_state = 15}, + [2580] = {.lex_state = 9, .external_lex_state = 15}, + [2581] = {.lex_state = 52, .external_lex_state = 15}, + [2582] = {.lex_state = 52, .external_lex_state = 18}, + [2583] = {.lex_state = 52, .external_lex_state = 18}, + [2584] = {.lex_state = 52, .external_lex_state = 18}, + [2585] = {.lex_state = 52, .external_lex_state = 15}, + [2586] = {.lex_state = 52, .external_lex_state = 18}, + [2587] = {.lex_state = 52, .external_lex_state = 13}, + [2588] = {.lex_state = 52, .external_lex_state = 18}, + [2589] = {.lex_state = 52, .external_lex_state = 15}, + [2590] = {.lex_state = 52, .external_lex_state = 18}, [2591] = {.lex_state = 52, .external_lex_state = 15}, - [2592] = {.lex_state = 52, .external_lex_state = 14}, - [2593] = {.lex_state = 52, .external_lex_state = 13}, - [2594] = {.lex_state = 52, .external_lex_state = 15}, - [2595] = {.lex_state = 52, .external_lex_state = 9}, - [2596] = {.lex_state = 52, .external_lex_state = 9}, + [2592] = {.lex_state = 9, .external_lex_state = 15}, + [2593] = {.lex_state = 52, .external_lex_state = 18}, + [2594] = {.lex_state = 52, .external_lex_state = 18}, + [2595] = {.lex_state = 52, .external_lex_state = 18}, + [2596] = {.lex_state = 52, .external_lex_state = 13}, [2597] = {.lex_state = 52, .external_lex_state = 15}, - [2598] = {.lex_state = 52, .external_lex_state = 18}, - [2599] = {.lex_state = 52, .external_lex_state = 13}, + [2598] = {.lex_state = 52, .external_lex_state = 13}, + [2599] = {.lex_state = 52, .external_lex_state = 9}, [2600] = {.lex_state = 52, .external_lex_state = 15}, - [2601] = {.lex_state = 52, .external_lex_state = 13}, + [2601] = {.lex_state = 52, .external_lex_state = 15}, [2602] = {.lex_state = 52, .external_lex_state = 13}, - [2603] = {.lex_state = 52, .external_lex_state = 12}, - [2604] = {.lex_state = 52, .external_lex_state = 14}, - [2605] = {.lex_state = 52, .external_lex_state = 12}, + [2603] = {.lex_state = 52, .external_lex_state = 13}, + [2604] = {.lex_state = 52, .external_lex_state = 15}, + [2605] = {.lex_state = 4, .external_lex_state = 15}, [2606] = {.lex_state = 52, .external_lex_state = 13}, - [2607] = {.lex_state = 52, .external_lex_state = 12}, - [2608] = {.lex_state = 52, .external_lex_state = 12}, + [2607] = {.lex_state = 52, .external_lex_state = 15}, + [2608] = {.lex_state = 52, .external_lex_state = 15}, [2609] = {.lex_state = 52, .external_lex_state = 15}, - [2610] = {.lex_state = 52, .external_lex_state = 13}, + [2610] = {.lex_state = 52, .external_lex_state = 15}, [2611] = {.lex_state = 4, .external_lex_state = 15}, [2612] = {.lex_state = 52, .external_lex_state = 15}, - [2613] = {.lex_state = 52, .external_lex_state = 13}, - [2614] = {.lex_state = 52, .external_lex_state = 13}, - [2615] = {.lex_state = 52, .external_lex_state = 14}, - [2616] = {.lex_state = 52, .external_lex_state = 12}, - [2617] = {.lex_state = 52, .external_lex_state = 15}, + [2613] = {.lex_state = 52, .external_lex_state = 15}, + [2614] = {.lex_state = 4, .external_lex_state = 15}, + [2615] = {.lex_state = 52, .external_lex_state = 13}, + [2616] = {.lex_state = 52, .external_lex_state = 14}, + [2617] = {.lex_state = 52, .external_lex_state = 12}, [2618] = {.lex_state = 52, .external_lex_state = 12}, - [2619] = {.lex_state = 52, .external_lex_state = 12}, + [2619] = {.lex_state = 52, .external_lex_state = 15}, [2620] = {.lex_state = 52, .external_lex_state = 15}, - [2621] = {.lex_state = 52, .external_lex_state = 12}, + [2621] = {.lex_state = 52, .external_lex_state = 15}, [2622] = {.lex_state = 52, .external_lex_state = 13}, - [2623] = {.lex_state = 52, .external_lex_state = 13}, - [2624] = {.lex_state = 52, .external_lex_state = 15}, - [2625] = {.lex_state = 52, .external_lex_state = 13}, - [2626] = {.lex_state = 52, .external_lex_state = 14}, - [2627] = {.lex_state = 52, .external_lex_state = 13}, - [2628] = {.lex_state = 52, .external_lex_state = 14}, - [2629] = {.lex_state = 52, .external_lex_state = 15}, - [2630] = {.lex_state = 52, .external_lex_state = 15}, - [2631] = {.lex_state = 52, .external_lex_state = 13}, - [2632] = {.lex_state = 52, .external_lex_state = 15}, + [2623] = {.lex_state = 52, .external_lex_state = 14}, + [2624] = {.lex_state = 52, .external_lex_state = 12}, + [2625] = {.lex_state = 52, .external_lex_state = 12}, + [2626] = {.lex_state = 52, .external_lex_state = 13}, + [2627] = {.lex_state = 52, .external_lex_state = 12}, + [2628] = {.lex_state = 52, .external_lex_state = 12}, + [2629] = {.lex_state = 52, .external_lex_state = 13}, + [2630] = {.lex_state = 52, .external_lex_state = 12}, + [2631] = {.lex_state = 52, .external_lex_state = 15}, + [2632] = {.lex_state = 52, .external_lex_state = 12}, [2633] = {.lex_state = 52, .external_lex_state = 13}, - [2634] = {.lex_state = 52, .external_lex_state = 12}, + [2634] = {.lex_state = 52, .external_lex_state = 14}, [2635] = {.lex_state = 52, .external_lex_state = 13}, - [2636] = {.lex_state = 52, .external_lex_state = 15}, - [2637] = {.lex_state = 52, .external_lex_state = 12}, - [2638] = {.lex_state = 4, .external_lex_state = 15}, - [2639] = {.lex_state = 52, .external_lex_state = 15}, - [2640] = {.lex_state = 52, .external_lex_state = 15}, - [2641] = {.lex_state = 52, .external_lex_state = 15}, + [2636] = {.lex_state = 52, .external_lex_state = 13}, + [2637] = {.lex_state = 52, .external_lex_state = 14}, + [2638] = {.lex_state = 52, .external_lex_state = 12}, + [2639] = {.lex_state = 52, .external_lex_state = 12}, + [2640] = {.lex_state = 52, .external_lex_state = 14}, + [2641] = {.lex_state = 52, .external_lex_state = 12}, [2642] = {.lex_state = 52, .external_lex_state = 15}, - [2643] = {.lex_state = 52, .external_lex_state = 12}, - [2644] = {.lex_state = 52, .external_lex_state = 15}, - [2645] = {.lex_state = 52, .external_lex_state = 15}, + [2643] = {.lex_state = 52, .external_lex_state = 14}, + [2644] = {.lex_state = 52, .external_lex_state = 13}, + [2645] = {.lex_state = 52, .external_lex_state = 14}, [2646] = {.lex_state = 52, .external_lex_state = 15}, - [2647] = {.lex_state = 52, .external_lex_state = 13}, - [2648] = {.lex_state = 52, .external_lex_state = 14}, - [2649] = {.lex_state = 52, .external_lex_state = 14}, + [2647] = {.lex_state = 52, .external_lex_state = 14}, + [2648] = {.lex_state = 52, .external_lex_state = 15}, + [2649] = {.lex_state = 52, .external_lex_state = 13}, [2650] = {.lex_state = 52, .external_lex_state = 15}, [2651] = {.lex_state = 52, .external_lex_state = 15}, - [2652] = {.lex_state = 52, .external_lex_state = 13}, - [2653] = {.lex_state = 52, .external_lex_state = 12}, + [2652] = {.lex_state = 52, .external_lex_state = 12}, + [2653] = {.lex_state = 52, .external_lex_state = 15}, [2654] = {.lex_state = 52, .external_lex_state = 14}, - [2655] = {.lex_state = 52, .external_lex_state = 15}, - [2656] = {.lex_state = 52, .external_lex_state = 15}, + [2655] = {.lex_state = 52, .external_lex_state = 12}, + [2656] = {.lex_state = 52, .external_lex_state = 12}, [2657] = {.lex_state = 52, .external_lex_state = 15}, - [2658] = {.lex_state = 52, .external_lex_state = 15}, - [2659] = {.lex_state = 52, .external_lex_state = 12}, - [2660] = {.lex_state = 52, .external_lex_state = 13}, - [2661] = {.lex_state = 52, .external_lex_state = 14}, - [2662] = {.lex_state = 52, .external_lex_state = 15}, + [2658] = {.lex_state = 52, .external_lex_state = 12}, + [2659] = {.lex_state = 52, .external_lex_state = 15}, + [2660] = {.lex_state = 52, .external_lex_state = 15}, + [2661] = {.lex_state = 52, .external_lex_state = 12}, + [2662] = {.lex_state = 52, .external_lex_state = 12}, [2663] = {.lex_state = 52, .external_lex_state = 14}, - [2664] = {.lex_state = 52, .external_lex_state = 14}, + [2664] = {.lex_state = 52, .external_lex_state = 15}, [2665] = {.lex_state = 52, .external_lex_state = 12}, - [2666] = {.lex_state = 52, .external_lex_state = 12}, - [2667] = {.lex_state = 52, .external_lex_state = 15}, + [2666] = {.lex_state = 52, .external_lex_state = 15}, + [2667] = {.lex_state = 52, .external_lex_state = 12}, [2668] = {.lex_state = 52, .external_lex_state = 12}, - [2669] = {.lex_state = 52, .external_lex_state = 12}, - [2670] = {.lex_state = 52, .external_lex_state = 12}, - [2671] = {.lex_state = 52, .external_lex_state = 15}, + [2669] = {.lex_state = 52, .external_lex_state = 15}, + [2670] = {.lex_state = 52, .external_lex_state = 14}, + [2671] = {.lex_state = 52, .external_lex_state = 12}, [2672] = {.lex_state = 52, .external_lex_state = 15}, - [2673] = {.lex_state = 52, .external_lex_state = 12}, - [2674] = {.lex_state = 52, .external_lex_state = 15}, + [2673] = {.lex_state = 52, .external_lex_state = 15}, + [2674] = {.lex_state = 52, .external_lex_state = 14}, [2675] = {.lex_state = 52, .external_lex_state = 12}, [2676] = {.lex_state = 52, .external_lex_state = 15}, [2677] = {.lex_state = 52, .external_lex_state = 15}, - [2678] = {.lex_state = 52, .external_lex_state = 12}, + [2678] = {.lex_state = 52, .external_lex_state = 14}, [2679] = {.lex_state = 52, .external_lex_state = 15}, - [2680] = {.lex_state = 52, .external_lex_state = 13}, - [2681] = {.lex_state = 52, .external_lex_state = 14}, - [2682] = {.lex_state = 52, .external_lex_state = 15}, - [2683] = {.lex_state = 4, .external_lex_state = 15}, - [2684] = {.lex_state = 52, .external_lex_state = 15}, + [2680] = {.lex_state = 52, .external_lex_state = 15}, + [2681] = {.lex_state = 52, .external_lex_state = 13}, + [2682] = {.lex_state = 52, .external_lex_state = 13}, + [2683] = {.lex_state = 52, .external_lex_state = 15}, + [2684] = {.lex_state = 52, .external_lex_state = 13}, [2685] = {.lex_state = 52, .external_lex_state = 15}, - [2686] = {.lex_state = 52, .external_lex_state = 15}, - [2687] = {.lex_state = 52, .external_lex_state = 14}, + [2686] = {.lex_state = 52, .external_lex_state = 13}, + [2687] = {.lex_state = 52, .external_lex_state = 15}, [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 = 15}, - [2692] = {.lex_state = 52, .external_lex_state = 13}, - [2693] = {.lex_state = 52, .external_lex_state = 15}, - [2694] = {.lex_state = 52, .external_lex_state = 12}, - [2695] = {.lex_state = 52, .external_lex_state = 15}, + [2689] = {.lex_state = 52, .external_lex_state = 15}, + [2690] = {.lex_state = 4, .external_lex_state = 15}, + [2691] = {.lex_state = 4, .external_lex_state = 15}, + [2692] = {.lex_state = 52, .external_lex_state = 15}, + [2693] = {.lex_state = 52, .external_lex_state = 13}, + [2694] = {.lex_state = 52, .external_lex_state = 15}, + [2695] = {.lex_state = 52, .external_lex_state = 14}, [2696] = {.lex_state = 52, .external_lex_state = 15}, - [2697] = {.lex_state = 52, .external_lex_state = 15}, - [2698] = {.lex_state = 52, .external_lex_state = 12}, - [2699] = {.lex_state = 52, .external_lex_state = 15}, - [2700] = {.lex_state = 52, .external_lex_state = 13}, - [2701] = {.lex_state = 52, .external_lex_state = 13}, - [2702] = {.lex_state = 52, .external_lex_state = 12}, - [2703] = {.lex_state = 52, .external_lex_state = 14}, - [2704] = {.lex_state = 52, .external_lex_state = 14}, + [2697] = {.lex_state = 52, .external_lex_state = 13}, + [2698] = {.lex_state = 52, .external_lex_state = 15}, + [2699] = {.lex_state = 52, .external_lex_state = 13}, + [2700] = {.lex_state = 52, .external_lex_state = 12}, + [2701] = {.lex_state = 52, .external_lex_state = 15}, + [2702] = {.lex_state = 52, .external_lex_state = 15}, + [2703] = {.lex_state = 52, .external_lex_state = 12}, + [2704] = {.lex_state = 52, .external_lex_state = 15}, [2705] = {.lex_state = 52, .external_lex_state = 15}, [2706] = {.lex_state = 52, .external_lex_state = 12}, [2707] = {.lex_state = 52, .external_lex_state = 13}, [2708] = {.lex_state = 52, .external_lex_state = 15}, - [2709] = {.lex_state = 52, .external_lex_state = 15}, - [2710] = {.lex_state = 52, .external_lex_state = 12}, - [2711] = {.lex_state = 52, .external_lex_state = 15}, + [2709] = {.lex_state = 52, .external_lex_state = 12}, + [2710] = {.lex_state = 52, .external_lex_state = 15}, + [2711] = {.lex_state = 4, .external_lex_state = 15}, [2712] = {.lex_state = 52, .external_lex_state = 15}, [2713] = {.lex_state = 52, .external_lex_state = 13}, - [2714] = {.lex_state = 52, .external_lex_state = 12}, + [2714] = {.lex_state = 52, .external_lex_state = 15}, [2715] = {.lex_state = 52, .external_lex_state = 15}, [2716] = {.lex_state = 52, .external_lex_state = 15}, [2717] = {.lex_state = 52, .external_lex_state = 15}, [2718] = {.lex_state = 52, .external_lex_state = 15}, [2719] = {.lex_state = 52, .external_lex_state = 15}, - [2720] = {.lex_state = 52, .external_lex_state = 15}, - [2721] = {.lex_state = 52, .external_lex_state = 13}, - [2722] = {.lex_state = 52, .external_lex_state = 15}, - [2723] = {.lex_state = 52, .external_lex_state = 14}, + [2720] = {.lex_state = 52, .external_lex_state = 13}, + [2721] = {.lex_state = 52, .external_lex_state = 15}, + [2722] = {.lex_state = 52, .external_lex_state = 12}, + [2723] = {.lex_state = 52, .external_lex_state = 15}, [2724] = {.lex_state = 52, .external_lex_state = 15}, - [2725] = {.lex_state = 52, .external_lex_state = 14}, + [2725] = {.lex_state = 52, .external_lex_state = 15}, [2726] = {.lex_state = 52, .external_lex_state = 13}, - [2727] = {.lex_state = 52, .external_lex_state = 12}, - [2728] = {.lex_state = 52, .external_lex_state = 12}, + [2727] = {.lex_state = 52, .external_lex_state = 15}, + [2728] = {.lex_state = 52, .external_lex_state = 15}, [2729] = {.lex_state = 52, .external_lex_state = 15}, - [2730] = {.lex_state = 52, .external_lex_state = 15}, - [2731] = {.lex_state = 52, .external_lex_state = 13}, - [2732] = {.lex_state = 52, .external_lex_state = 15}, - [2733] = {.lex_state = 52, .external_lex_state = 14}, + [2730] = {.lex_state = 52, .external_lex_state = 13}, + [2731] = {.lex_state = 52, .external_lex_state = 15}, + [2732] = {.lex_state = 52, .external_lex_state = 12}, + [2733] = {.lex_state = 52, .external_lex_state = 15}, [2734] = {.lex_state = 52, .external_lex_state = 15}, - [2735] = {.lex_state = 52, .external_lex_state = 15}, - [2736] = {.lex_state = 52, .external_lex_state = 13}, - [2737] = {.lex_state = 52, .external_lex_state = 14}, - [2738] = {.lex_state = 52, .external_lex_state = 15}, + [2735] = {.lex_state = 52, .external_lex_state = 13}, + [2736] = {.lex_state = 52, .external_lex_state = 15}, + [2737] = {.lex_state = 52, .external_lex_state = 12}, + [2738] = {.lex_state = 52, .external_lex_state = 13}, [2739] = {.lex_state = 52, .external_lex_state = 12}, - [2740] = {.lex_state = 52, .external_lex_state = 15}, - [2741] = {.lex_state = 52, .external_lex_state = 12}, + [2740] = {.lex_state = 52, .external_lex_state = 14}, + [2741] = {.lex_state = 52, .external_lex_state = 14}, [2742] = {.lex_state = 52, .external_lex_state = 12}, - [2743] = {.lex_state = 52, .external_lex_state = 14}, + [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 = 12}, - [2747] = {.lex_state = 52, .external_lex_state = 15}, + [2745] = {.lex_state = 52, .external_lex_state = 12}, + [2746] = {.lex_state = 4, .external_lex_state = 15}, + [2747] = {.lex_state = 52, .external_lex_state = 14}, [2748] = {.lex_state = 52, .external_lex_state = 15}, - [2749] = {.lex_state = 52, .external_lex_state = 13}, + [2749] = {.lex_state = 52, .external_lex_state = 15}, [2750] = {.lex_state = 52, .external_lex_state = 15}, - [2751] = {.lex_state = 4, .external_lex_state = 15}, + [2751] = {.lex_state = 52, .external_lex_state = 13}, [2752] = {.lex_state = 52, .external_lex_state = 15}, [2753] = {.lex_state = 52, .external_lex_state = 15}, - [2754] = {.lex_state = 52, .external_lex_state = 14}, - [2755] = {.lex_state = 52, .external_lex_state = 15}, - [2756] = {.lex_state = 52, .external_lex_state = 15}, - [2757] = {.lex_state = 52, .external_lex_state = 12}, - [2758] = {.lex_state = 52, .external_lex_state = 15}, - [2759] = {.lex_state = 52, .external_lex_state = 12}, + [2754] = {.lex_state = 52, .external_lex_state = 13}, + [2755] = {.lex_state = 52, .external_lex_state = 12}, + [2756] = {.lex_state = 52, .external_lex_state = 14}, + [2757] = {.lex_state = 52, .external_lex_state = 13}, + [2758] = {.lex_state = 52, .external_lex_state = 12}, + [2759] = {.lex_state = 52, .external_lex_state = 15}, [2760] = {.lex_state = 52, .external_lex_state = 15}, [2761] = {.lex_state = 52, .external_lex_state = 15}, - [2762] = {.lex_state = 52, .external_lex_state = 12}, - [2763] = {.lex_state = 52, .external_lex_state = 13}, + [2762] = {.lex_state = 52, .external_lex_state = 13}, + [2763] = {.lex_state = 52, .external_lex_state = 14}, [2764] = {.lex_state = 52, .external_lex_state = 15}, [2765] = {.lex_state = 52, .external_lex_state = 15}, - [2766] = {.lex_state = 52, .external_lex_state = 12}, - [2767] = {.lex_state = 52, .external_lex_state = 15}, - [2768] = {.lex_state = 52, .external_lex_state = 12}, - [2769] = {.lex_state = 52, .external_lex_state = 15}, - [2770] = {.lex_state = 52, .external_lex_state = 15}, - [2771] = {.lex_state = 4, .external_lex_state = 15}, - [2772] = {.lex_state = 52, .external_lex_state = 15}, - [2773] = {.lex_state = 4, .external_lex_state = 15}, - [2774] = {.lex_state = 52, .external_lex_state = 15}, + [2766] = {.lex_state = 52, .external_lex_state = 15}, + [2767] = {.lex_state = 52, .external_lex_state = 14}, + [2768] = {.lex_state = 52, .external_lex_state = 15}, + [2769] = {.lex_state = 52, .external_lex_state = 12}, + [2770] = {.lex_state = 52, .external_lex_state = 13}, + [2771] = {.lex_state = 52, .external_lex_state = 15}, + [2772] = {.lex_state = 52, .external_lex_state = 12}, + [2773] = {.lex_state = 52, .external_lex_state = 15}, + [2774] = {.lex_state = 52, .external_lex_state = 13}, [2775] = {.lex_state = 4, .external_lex_state = 15}, - [2776] = {.lex_state = 52, .external_lex_state = 15}, - [2777] = {.lex_state = 4, .external_lex_state = 15}, + [2776] = {.lex_state = 52, .external_lex_state = 12}, + [2777] = {.lex_state = 52, .external_lex_state = 15}, [2778] = {.lex_state = 52, .external_lex_state = 15}, [2779] = {.lex_state = 52, .external_lex_state = 15}, [2780] = {.lex_state = 52, .external_lex_state = 15}, [2781] = {.lex_state = 52, .external_lex_state = 15}, - [2782] = {.lex_state = 52, .external_lex_state = 13}, + [2782] = {.lex_state = 52, .external_lex_state = 15}, [2783] = {.lex_state = 52, .external_lex_state = 15}, [2784] = {.lex_state = 52, .external_lex_state = 15}, [2785] = {.lex_state = 52, .external_lex_state = 15}, @@ -10257,11 +10257,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2787] = {.lex_state = 52, .external_lex_state = 15}, [2788] = {.lex_state = 52, .external_lex_state = 15}, [2789] = {.lex_state = 52, .external_lex_state = 15}, - [2790] = {.lex_state = 52, .external_lex_state = 15}, + [2790] = {.lex_state = 52, .external_lex_state = 14}, [2791] = {.lex_state = 52, .external_lex_state = 15}, - [2792] = {.lex_state = 52, .external_lex_state = 14}, - [2793] = {.lex_state = 52, .external_lex_state = 13}, - [2794] = {.lex_state = 52, .external_lex_state = 13}, + [2792] = {.lex_state = 52, .external_lex_state = 15}, + [2793] = {.lex_state = 52, .external_lex_state = 12}, + [2794] = {.lex_state = 52, .external_lex_state = 12}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -10375,72 +10375,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(2753), - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1791), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [sym_module] = STATE(2777), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1782), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1782), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10489,72 +10489,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [2] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(727), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(850), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10603,72 +10603,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [3] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(706), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(755), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10717,72 +10717,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [4] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(755), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(824), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10827,26 +10827,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [5] = { [sym__statement] = STATE(66), [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(66), [sym_match_statement] = STATE(66), [sym_for_statement] = STATE(66), @@ -10854,49 +10854,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(66), [sym_with_statement] = STATE(66), [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(66), [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(809), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(2576), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10941,76 +10941,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [6] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(738), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(689), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11055,76 +11055,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [7] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(748), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(797), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11173,72 +11173,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [8] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(750), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(759), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11287,72 +11287,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [9] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(753), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(708), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11397,76 +11397,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [10] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(758), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(723), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11515,72 +11515,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [11] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(702), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(722), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11625,76 +11625,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [12] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(674), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(678), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11739,76 +11739,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [13] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(762), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(768), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11857,72 +11857,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [14] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(765), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(815), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11967,76 +11967,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [15] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(766), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(763), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12081,76 +12081,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [16] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(723), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(804), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12199,72 +12199,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [17] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(711), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(837), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12309,76 +12309,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [18] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(773), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(839), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12423,76 +12423,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [19] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(681), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(828), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12537,26 +12537,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [20] = { [sym__statement] = STATE(69), [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(69), [sym_match_statement] = STATE(69), [sym_for_statement] = STATE(69), @@ -12564,49 +12564,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(69), [sym_with_statement] = STATE(69), [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(69), [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(682), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(812), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12651,76 +12651,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [21] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(777), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(614), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12769,72 +12769,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [22] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), [sym_block] = STATE(714), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12879,76 +12879,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [23] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(2579), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(843), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12993,76 +12993,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [24] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(783), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(772), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13107,76 +13107,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [25] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(789), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(729), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13221,26 +13221,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [26] = { [sym__statement] = STATE(71), [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(71), [sym_match_statement] = STATE(71), [sym_for_statement] = STATE(71), @@ -13248,49 +13248,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(71), [sym_with_statement] = STATE(71), [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(71), [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(2511), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(704), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13335,26 +13335,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [27] = { [sym__statement] = STATE(71), [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(71), [sym_match_statement] = STATE(71), [sym_for_statement] = STATE(71), @@ -13362,49 +13362,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(71), [sym_with_statement] = STATE(71), [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(71), [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(2517), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(706), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13449,76 +13449,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [28] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(792), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(1785), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13563,26 +13563,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, [29] = { [sym__statement] = STATE(70), [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(70), [sym_match_statement] = STATE(70), [sym_for_statement] = STATE(70), @@ -13590,49 +13590,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(70), [sym_with_statement] = STATE(70), [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(70), [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(687), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(682), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13677,26 +13677,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(81), }, [30] = { [sym__statement] = STATE(66), [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(66), [sym_match_statement] = STATE(66), [sym_for_statement] = STATE(66), @@ -13704,49 +13704,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(66), [sym_with_statement] = STATE(66), [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(66), [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(611), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(2582), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13791,76 +13791,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [31] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(2523), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(626), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13905,26 +13905,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [32] = { [sym__statement] = STATE(71), [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(71), [sym_match_statement] = STATE(71), [sym_for_statement] = STATE(71), @@ -13932,49 +13932,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(71), [sym_with_statement] = STATE(71), [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(71), [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(2524), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(728), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14019,26 +14019,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [33] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(653), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(83), + [anon_sym_match] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(111), + [sym_string_start] = ACTIONS(81), + }, + [34] = { [sym__statement] = STATE(71), [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(71), [sym_match_statement] = STATE(71), [sym_for_statement] = STATE(71), @@ -14046,49 +14160,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(71), [sym_with_statement] = STATE(71), [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(71), [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(2535), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(713), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14133,76 +14247,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [34] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(620), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [35] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(2584), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14247,76 +14361,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(105), [sym_string_start] = ACTIONS(81), }, - [35] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(717), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [36] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(718), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14364,73 +14478,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [36] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(820), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [37] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(767), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14478,73 +14592,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [37] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(822), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [38] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(1802), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14589,76 +14703,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [38] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(829), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [39] = { + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(770), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14703,76 +14817,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [39] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(835), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [40] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(782), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14820,73 +14934,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(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(837), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [41] = { + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(826), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14931,76 +15045,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [41] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(839), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [42] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(686), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15045,76 +15159,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(81), }, - [42] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(843), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [43] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(691), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15159,76 +15273,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [43] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(721), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [44] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(785), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15276,73 +15390,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(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(651), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [45] = { + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(761), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15387,76 +15501,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [45] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(790), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [46] = { + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(819), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15501,76 +15615,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [46] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(787), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [47] = { + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(705), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15615,76 +15729,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [47] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(788), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [48] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(667), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15729,76 +15843,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [48] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(1776), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [49] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(685), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15846,23 +15960,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [49] = { + [50] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -15870,49 +15984,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(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(708), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(666), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15957,76 +16071,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(115), [sym_string_start] = ACTIONS(81), }, - [50] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(761), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [51] = { + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(794), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16071,76 +16185,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [51] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(665), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [52] = { + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(820), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16185,76 +16299,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [52] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(666), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [53] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(2595), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16299,76 +16413,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(105), [sym_string_start] = ACTIONS(81), }, - [53] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(842), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [54] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(2593), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16413,190 +16527,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_string_start] = ACTIONS(81), - }, - [54] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(707), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [55] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(739), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(737), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16645,72 +16645,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [56] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(752), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(827), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16755,76 +16755,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [57] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(754), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(735), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16873,72 +16873,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [58] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(672), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(752), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16983,76 +16983,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [59] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(677), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(2588), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17097,76 +17097,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [60] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(1822), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(715), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17211,76 +17211,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [61] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(688), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1826), + [sym_block] = STATE(687), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17325,75 +17325,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(115), [sym_string_start] = ACTIONS(81), }, [62] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1782), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1782), + [ts_builtin_sym_end] = ACTIONS(117), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17407,19 +17408,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), + [anon_sym_if] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_def] = ACTIONS(49), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(59), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -17438,75 +17439,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(117), [sym_string_start] = ACTIONS(81), }, [63] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1826), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17555,72 +17555,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [64] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1791), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1791), - [ts_builtin_sym_end] = ACTIONS(121), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1826), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym_identifier] = ACTIONS(121), + [anon_sym_import] = ACTIONS(124), + [anon_sym_from] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_print] = ACTIONS(136), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_return] = ACTIONS(142), + [anon_sym_del] = ACTIONS(145), + [anon_sym_raise] = ACTIONS(148), + [anon_sym_pass] = ACTIONS(151), + [anon_sym_break] = ACTIONS(154), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_if] = ACTIONS(160), + [anon_sym_match] = ACTIONS(163), + [anon_sym_async] = ACTIONS(166), + [anon_sym_for] = ACTIONS(169), + [anon_sym_while] = ACTIONS(172), + [anon_sym_try] = ACTIONS(175), + [anon_sym_with] = ACTIONS(178), + [anon_sym_def] = ACTIONS(181), + [anon_sym_global] = ACTIONS(184), + [anon_sym_nonlocal] = ACTIONS(187), + [anon_sym_exec] = ACTIONS(190), + [anon_sym_type] = ACTIONS(193), + [anon_sym_class] = ACTIONS(196), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_not] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(205), + [anon_sym_lambda] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(220), + [sym_integer] = ACTIONS(223), + [sym_float] = ACTIONS(220), + [anon_sym_await] = ACTIONS(226), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_none] = ACTIONS(223), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(229), + [sym_string_start] = ACTIONS(231), + }, + [65] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1826), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17634,19 +17746,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), @@ -17665,187 +17777,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_string_start] = ACTIONS(81), }, - [65] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), - [sym_identifier] = ACTIONS(123), - [anon_sym_import] = ACTIONS(126), - [anon_sym_from] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(132), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_print] = ACTIONS(138), - [anon_sym_assert] = ACTIONS(141), - [anon_sym_return] = ACTIONS(144), - [anon_sym_del] = ACTIONS(147), - [anon_sym_raise] = ACTIONS(150), - [anon_sym_pass] = ACTIONS(153), - [anon_sym_break] = ACTIONS(156), - [anon_sym_continue] = ACTIONS(159), - [anon_sym_if] = ACTIONS(162), - [anon_sym_match] = ACTIONS(165), - [anon_sym_async] = ACTIONS(168), - [anon_sym_for] = ACTIONS(171), - [anon_sym_while] = ACTIONS(174), - [anon_sym_try] = ACTIONS(177), - [anon_sym_with] = ACTIONS(180), - [anon_sym_def] = ACTIONS(183), - [anon_sym_global] = ACTIONS(186), - [anon_sym_nonlocal] = ACTIONS(189), - [anon_sym_exec] = ACTIONS(192), - [anon_sym_type] = ACTIONS(195), - [anon_sym_class] = ACTIONS(198), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(204), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_not] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_lambda] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(219), - [sym_ellipsis] = ACTIONS(222), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(222), - [anon_sym_await] = ACTIONS(228), - [sym_true] = ACTIONS(225), - [sym_false] = ACTIONS(225), - [sym_none] = ACTIONS(225), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(231), - [sym_string_start] = ACTIONS(233), - }, [66] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1826), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17896,20 +17896,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [67] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -17917,62 +17917,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1791), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1782), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1791), - [ts_builtin_sym_end] = ACTIONS(231), - [sym_identifier] = ACTIONS(123), - [anon_sym_import] = ACTIONS(126), - [anon_sym_from] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(132), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_print] = ACTIONS(138), - [anon_sym_assert] = ACTIONS(141), - [anon_sym_return] = ACTIONS(144), - [anon_sym_del] = ACTIONS(147), - [anon_sym_raise] = ACTIONS(150), - [anon_sym_pass] = ACTIONS(153), - [anon_sym_break] = ACTIONS(156), - [anon_sym_continue] = ACTIONS(159), + [aux_sym_decorated_definition_repeat1] = STATE(1782), + [ts_builtin_sym_end] = ACTIONS(229), + [sym_identifier] = ACTIONS(121), + [anon_sym_import] = ACTIONS(124), + [anon_sym_from] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_print] = ACTIONS(136), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_return] = ACTIONS(142), + [anon_sym_del] = ACTIONS(145), + [anon_sym_raise] = ACTIONS(148), + [anon_sym_pass] = ACTIONS(151), + [anon_sym_break] = ACTIONS(154), + [anon_sym_continue] = ACTIONS(157), [anon_sym_if] = ACTIONS(238), [anon_sym_match] = ACTIONS(241), [anon_sym_async] = ACTIONS(244), @@ -17981,97 +17981,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(253), [anon_sym_with] = ACTIONS(256), [anon_sym_def] = ACTIONS(259), - [anon_sym_global] = ACTIONS(186), - [anon_sym_nonlocal] = ACTIONS(189), - [anon_sym_exec] = ACTIONS(192), - [anon_sym_type] = ACTIONS(195), + [anon_sym_global] = ACTIONS(184), + [anon_sym_nonlocal] = ACTIONS(187), + [anon_sym_exec] = ACTIONS(190), + [anon_sym_type] = ACTIONS(193), [anon_sym_class] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(204), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_not] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_lambda] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(219), - [sym_ellipsis] = ACTIONS(222), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(222), - [anon_sym_await] = ACTIONS(228), - [sym_true] = ACTIONS(225), - [sym_false] = ACTIONS(225), - [sym_none] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_not] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(205), + [anon_sym_lambda] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(220), + [sym_integer] = ACTIONS(223), + [sym_float] = ACTIONS(220), + [anon_sym_await] = ACTIONS(226), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_none] = ACTIONS(223), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(233), + [sym_string_start] = ACTIONS(231), }, [68] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1826), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18120,71 +18120,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [69] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1826), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18233,71 +18233,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [70] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1826), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18346,71 +18346,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [71] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1826), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18459,71 +18459,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [72] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1826), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1826), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18572,40 +18572,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [73] = { - [sym_named_expression] = STATE(1717), - [sym__named_expression_lhs] = STATE(2775), - [sym_list_splat_pattern] = STATE(1342), - [sym_as_pattern] = STATE(1717), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1717), - [sym_boolean_operator] = STATE(1717), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_comparison_operator] = STATE(1717), - [sym_lambda] = STATE(1717), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_type] = STATE(2130), + [sym_named_expression] = STATE(1720), + [sym__named_expression_lhs] = STATE(2711), + [sym_list_splat_pattern] = STATE(1269), + [sym_as_pattern] = STATE(1720), + [sym_expression] = STATE(1752), + [sym_primary_expression] = STATE(968), + [sym_not_operator] = STATE(1720), + [sym_boolean_operator] = STATE(1720), + [sym_binary_operator] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_comparison_operator] = STATE(1720), + [sym_lambda] = STATE(1720), + [sym_attribute] = STATE(1339), + [sym_subscript] = STATE(1339), + [sym_call] = STATE(1339), + [sym_type] = STATE(2120), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_conditional_expression] = STATE(1717), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), + [sym_list] = STATE(1339), + [sym_set] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_dictionary] = STATE(1339), + [sym_list_comprehension] = STATE(1339), + [sym_dictionary_comprehension] = STATE(1339), + [sym_set_comprehension] = STATE(1339), + [sym_generator_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_conditional_expression] = STATE(1720), + [sym_concatenated_string] = STATE(1339), + [sym_string] = STATE(1033), + [sym_await] = STATE(1339), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -18618,20 +18618,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), [anon_sym_COLON] = ACTIONS(294), - [anon_sym_match] = ACTIONS(297), + [anon_sym_match] = ACTIONS(296), [anon_sym_async] = ACTIONS(290), [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_STAR_STAR] = ACTIONS(298), [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(304), + [anon_sym_type] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(301), [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(307), + [anon_sym_DASH] = ACTIONS(304), [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_not] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_not] = ACTIONS(309), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), [anon_sym_SLASH] = ACTIONS(279), @@ -18640,7 +18640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(312), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -18649,67 +18649,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(325), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [anon_sym_lambda] = ACTIONS(314), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(322), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(327), + [sym_string_start] = ACTIONS(324), }, [74] = { - [sym_named_expression] = STATE(1717), - [sym__named_expression_lhs] = STATE(2775), - [sym_list_splat_pattern] = STATE(1342), - [sym_as_pattern] = STATE(1717), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1717), - [sym_boolean_operator] = STATE(1717), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_comparison_operator] = STATE(1717), - [sym_lambda] = STATE(1717), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_type] = STATE(2130), + [sym_named_expression] = STATE(1720), + [sym__named_expression_lhs] = STATE(2711), + [sym_list_splat_pattern] = STATE(1269), + [sym_as_pattern] = STATE(1720), + [sym_expression] = STATE(1752), + [sym_primary_expression] = STATE(968), + [sym_not_operator] = STATE(1720), + [sym_boolean_operator] = STATE(1720), + [sym_binary_operator] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_comparison_operator] = STATE(1720), + [sym_lambda] = STATE(1720), + [sym_attribute] = STATE(1339), + [sym_subscript] = STATE(1339), + [sym_call] = STATE(1339), + [sym_type] = STATE(2120), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_conditional_expression] = STATE(1717), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), + [sym_list] = STATE(1339), + [sym_set] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_dictionary] = STATE(1339), + [sym_list_comprehension] = STATE(1339), + [sym_dictionary_comprehension] = STATE(1339), + [sym_set_comprehension] = STATE(1339), + [sym_generator_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_conditional_expression] = STATE(1720), + [sym_concatenated_string] = STATE(1339), + [sym_string] = STATE(1033), + [sym_await] = STATE(1339), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -18721,21 +18721,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(302), - [anon_sym_match] = ACTIONS(297), + [anon_sym_COLON] = ACTIONS(326), + [anon_sym_match] = ACTIONS(296), [anon_sym_async] = ACTIONS(290), [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_STAR_STAR] = ACTIONS(298), [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(304), + [anon_sym_type] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(301), [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(307), + [anon_sym_DASH] = ACTIONS(304), [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_not] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_not] = ACTIONS(309), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), [anon_sym_SLASH] = ACTIONS(279), @@ -18744,7 +18744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(312), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -18753,91 +18753,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(325), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [anon_sym_lambda] = ACTIONS(314), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(322), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(327), + [sym_string_start] = ACTIONS(324), }, [75] = { - [sym__simple_statements] = STATE(764), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), + [sym__simple_statements] = STATE(784), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(636), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1698), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1130), + [sym_type] = STATE(2072), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18880,64 +18880,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [76] = { - [sym__simple_statements] = STATE(772), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), + [sym__simple_statements] = STATE(840), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(636), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1698), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1130), + [sym_type] = STATE(2072), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18980,64 +18980,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [77] = { - [sym__simple_statements] = STATE(770), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), + [sym__simple_statements] = STATE(762), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(636), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1698), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1130), + [sym_type] = STATE(2072), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19080,64 +19080,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [78] = { - [sym__simple_statements] = STATE(728), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), + [sym__simple_statements] = STATE(771), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(636), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1698), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1130), + [sym_type] = STATE(2072), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19180,64 +19180,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [79] = { - [sym__simple_statements] = STATE(731), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), + [sym__simple_statements] = STATE(753), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(636), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1698), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1130), + [sym_type] = STATE(2072), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19280,64 +19280,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [80] = { - [sym__simple_statements] = STATE(784), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), + [sym__simple_statements] = STATE(778), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(636), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1698), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1130), + [sym_type] = STATE(2072), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19380,64 +19380,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [81] = { - [sym__simple_statements] = STATE(778), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), + [sym__simple_statements] = STATE(790), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(636), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1698), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1130), + [sym_type] = STATE(2072), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19480,64 +19480,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [82] = { - [sym__simple_statements] = STATE(741), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), + [sym__simple_statements] = STATE(798), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(636), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1698), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(635), + [sym_subscript] = STATE(635), + [sym_call] = STATE(1130), + [sym_type] = STATE(2072), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19580,35 +19580,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [83] = { - [sym_chevron] = STATE(2186), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_list_splat_pattern] = STATE(1119), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(865), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_attribute] = STATE(1035), - [sym_subscript] = STATE(1035), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_chevron] = STATE(2116), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_list_splat_pattern] = STATE(1118), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1813), + [sym_primary_expression] = STATE(860), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_attribute] = STATE(1130), + [sym_subscript] = STATE(1130), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(383), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -19620,14 +19620,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(393), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(302), + [anon_sym_COLON] = ACTIONS(326), [anon_sym_match] = ACTIONS(395), [anon_sym_async] = ACTIONS(391), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(279), [anon_sym_exec] = ACTIONS(391), [anon_sym_type] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(302), + [anon_sym_EQ] = ACTIONS(294), [anon_sym_LBRACK] = ACTIONS(397), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(400), @@ -19653,19 +19653,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), @@ -19679,35 +19679,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [84] = { - [sym_chevron] = STATE(2186), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_list_splat_pattern] = STATE(1119), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(865), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_attribute] = STATE(1035), - [sym_subscript] = STATE(1035), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_chevron] = STATE(2116), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_list_splat_pattern] = STATE(1118), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1813), + [sym_primary_expression] = STATE(860), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_attribute] = STATE(1130), + [sym_subscript] = STATE(1130), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(383), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -19726,7 +19726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(279), [anon_sym_exec] = ACTIONS(391), [anon_sym_type] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(302), + [anon_sym_EQ] = ACTIONS(294), [anon_sym_LBRACK] = ACTIONS(397), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(400), @@ -19752,19 +19752,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), @@ -19778,34 +19778,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [85] = { - [sym_named_expression] = STATE(1717), - [sym__named_expression_lhs] = STATE(2775), - [sym_list_splat_pattern] = STATE(1342), - [sym_as_pattern] = STATE(1717), - [sym_expression] = STATE(1856), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1717), - [sym_boolean_operator] = STATE(1717), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_comparison_operator] = STATE(1717), - [sym_lambda] = STATE(1717), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_conditional_expression] = STATE(1717), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), + [sym_named_expression] = STATE(1720), + [sym__named_expression_lhs] = STATE(2711), + [sym_list_splat_pattern] = STATE(1269), + [sym_as_pattern] = STATE(1720), + [sym_expression] = STATE(1881), + [sym_primary_expression] = STATE(968), + [sym_not_operator] = STATE(1720), + [sym_boolean_operator] = STATE(1720), + [sym_binary_operator] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_comparison_operator] = STATE(1720), + [sym_lambda] = STATE(1720), + [sym_attribute] = STATE(1339), + [sym_subscript] = STATE(1339), + [sym_call] = STATE(1339), + [sym_list] = STATE(1339), + [sym_set] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_dictionary] = STATE(1339), + [sym_list_comprehension] = STATE(1339), + [sym_dictionary_comprehension] = STATE(1339), + [sym_set_comprehension] = STATE(1339), + [sym_generator_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_conditional_expression] = STATE(1720), + [sym_concatenated_string] = STATE(1339), + [sym_string] = STATE(1033), + [sym_await] = STATE(1339), [sym_identifier] = ACTIONS(408), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -19817,21 +19817,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(302), - [anon_sym_match] = ACTIONS(297), + [anon_sym_COLON] = ACTIONS(294), + [anon_sym_match] = ACTIONS(296), [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(302), - [anon_sym_LBRACK] = ACTIONS(304), + [anon_sym_type] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(301), [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(307), + [anon_sym_DASH] = ACTIONS(304), [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_not] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_not] = ACTIONS(309), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), [anon_sym_SLASH] = ACTIONS(279), @@ -19840,7 +19840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(312), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -19849,61 +19849,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(325), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [anon_sym_lambda] = ACTIONS(314), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(322), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(327), + [sym_string_start] = ACTIONS(324), }, [86] = { - [sym_named_expression] = STATE(1717), - [sym__named_expression_lhs] = STATE(2775), - [sym_list_splat_pattern] = STATE(1342), - [sym_as_pattern] = STATE(1717), - [sym_expression] = STATE(1868), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1717), - [sym_boolean_operator] = STATE(1717), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_comparison_operator] = STATE(1717), - [sym_lambda] = STATE(1717), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_conditional_expression] = STATE(1717), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), + [sym_named_expression] = STATE(1720), + [sym__named_expression_lhs] = STATE(2711), + [sym_list_splat_pattern] = STATE(1269), + [sym_as_pattern] = STATE(1720), + [sym_expression] = STATE(1863), + [sym_primary_expression] = STATE(968), + [sym_not_operator] = STATE(1720), + [sym_boolean_operator] = STATE(1720), + [sym_binary_operator] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_comparison_operator] = STATE(1720), + [sym_lambda] = STATE(1720), + [sym_attribute] = STATE(1339), + [sym_subscript] = STATE(1339), + [sym_call] = STATE(1339), + [sym_list] = STATE(1339), + [sym_set] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_dictionary] = STATE(1339), + [sym_list_comprehension] = STATE(1339), + [sym_dictionary_comprehension] = STATE(1339), + [sym_set_comprehension] = STATE(1339), + [sym_generator_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_conditional_expression] = STATE(1720), + [sym_concatenated_string] = STATE(1339), + [sym_string] = STATE(1033), + [sym_await] = STATE(1339), [sym_identifier] = ACTIONS(408), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -19915,21 +19915,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(302), - [anon_sym_match] = ACTIONS(297), + [anon_sym_COLON] = ACTIONS(294), + [anon_sym_match] = ACTIONS(296), [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(302), - [anon_sym_LBRACK] = ACTIONS(304), + [anon_sym_type] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(301), [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(307), + [anon_sym_DASH] = ACTIONS(304), [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_not] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_not] = ACTIONS(309), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), [anon_sym_SLASH] = ACTIONS(279), @@ -19938,7 +19938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(312), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -19947,85 +19947,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(325), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [anon_sym_lambda] = ACTIONS(314), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(322), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(327), + [sym_string_start] = ACTIONS(324), }, [87] = { - [sym__simple_statements] = STATE(2526), - [sym_import_statement] = STATE(2299), - [sym_future_import_statement] = STATE(2299), - [sym_import_from_statement] = STATE(2299), - [sym_print_statement] = STATE(2299), - [sym_assert_statement] = STATE(2299), - [sym_expression_statement] = STATE(2299), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2299), - [sym_delete_statement] = STATE(2299), - [sym_raise_statement] = STATE(2299), - [sym_pass_statement] = STATE(2299), - [sym_break_statement] = STATE(2299), - [sym_continue_statement] = STATE(2299), - [sym_global_statement] = STATE(2299), - [sym_nonlocal_statement] = STATE(2299), - [sym_exec_statement] = STATE(2299), - [sym_type_alias_statement] = STATE(2299), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(1807), + [sym_import_statement] = STATE(2445), + [sym_future_import_statement] = STATE(2445), + [sym_import_from_statement] = STATE(2445), + [sym_print_statement] = STATE(2445), + [sym_assert_statement] = STATE(2445), + [sym_expression_statement] = STATE(2445), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2445), + [sym_delete_statement] = STATE(2445), + [sym_raise_statement] = STATE(2445), + [sym_pass_statement] = STATE(2445), + [sym_break_statement] = STATE(2445), + [sym_continue_statement] = STATE(2445), + [sym_global_statement] = STATE(2445), + [sym_nonlocal_statement] = STATE(2445), + [sym_exec_statement] = STATE(2445), + [sym_type_alias_statement] = STATE(2445), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20067,58 +20067,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [88] = { - [sym__simple_statements] = STATE(725), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(654), + [sym_import_statement] = STATE(2453), + [sym_future_import_statement] = STATE(2453), + [sym_import_from_statement] = STATE(2453), + [sym_print_statement] = STATE(2453), + [sym_assert_statement] = STATE(2453), + [sym_expression_statement] = STATE(2453), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2453), + [sym_delete_statement] = STATE(2453), + [sym_raise_statement] = STATE(2453), + [sym_pass_statement] = STATE(2453), + [sym_break_statement] = STATE(2453), + [sym_continue_statement] = STATE(2453), + [sym_global_statement] = STATE(2453), + [sym_nonlocal_statement] = STATE(2453), + [sym_exec_statement] = STATE(2453), + [sym_type_alias_statement] = STATE(2453), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20160,58 +20160,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [89] = { - [sym__simple_statements] = STATE(830), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(719), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20253,58 +20253,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [90] = { - [sym__simple_statements] = STATE(719), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(1833), + [sym_import_statement] = STATE(2445), + [sym_future_import_statement] = STATE(2445), + [sym_import_from_statement] = STATE(2445), + [sym_print_statement] = STATE(2445), + [sym_assert_statement] = STATE(2445), + [sym_expression_statement] = STATE(2445), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2445), + [sym_delete_statement] = STATE(2445), + [sym_raise_statement] = STATE(2445), + [sym_pass_statement] = STATE(2445), + [sym_break_statement] = STATE(2445), + [sym_continue_statement] = STATE(2445), + [sym_global_statement] = STATE(2445), + [sym_nonlocal_statement] = STATE(2445), + [sym_exec_statement] = STATE(2445), + [sym_type_alias_statement] = STATE(2445), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20346,58 +20346,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [91] = { - [sym__simple_statements] = STATE(698), - [sym_import_statement] = STATE(2341), - [sym_future_import_statement] = STATE(2341), - [sym_import_from_statement] = STATE(2341), - [sym_print_statement] = STATE(2341), - [sym_assert_statement] = STATE(2341), - [sym_expression_statement] = STATE(2341), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2341), - [sym_delete_statement] = STATE(2341), - [sym_raise_statement] = STATE(2341), - [sym_pass_statement] = STATE(2341), - [sym_break_statement] = STATE(2341), - [sym_continue_statement] = STATE(2341), - [sym_global_statement] = STATE(2341), - [sym_nonlocal_statement] = STATE(2341), - [sym_exec_statement] = STATE(2341), - [sym_type_alias_statement] = STATE(2341), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(816), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20439,58 +20439,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [92] = { - [sym__simple_statements] = STATE(832), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(2574), + [sym_import_statement] = STATE(2489), + [sym_future_import_statement] = STATE(2489), + [sym_import_from_statement] = STATE(2489), + [sym_print_statement] = STATE(2489), + [sym_assert_statement] = STATE(2489), + [sym_expression_statement] = STATE(2489), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2489), + [sym_delete_statement] = STATE(2489), + [sym_raise_statement] = STATE(2489), + [sym_pass_statement] = STATE(2489), + [sym_break_statement] = STATE(2489), + [sym_continue_statement] = STATE(2489), + [sym_global_statement] = STATE(2489), + [sym_nonlocal_statement] = STATE(2489), + [sym_exec_statement] = STATE(2489), + [sym_type_alias_statement] = STATE(2489), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20532,58 +20532,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [93] = { - [sym__simple_statements] = STATE(715), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(733), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20625,58 +20625,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [94] = { - [sym__simple_statements] = STATE(836), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(701), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20718,58 +20718,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [95] = { - [sym__simple_statements] = STATE(779), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(777), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20811,58 +20811,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [96] = { - [sym__simple_statements] = STATE(838), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(764), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20904,58 +20904,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [97] = { - [sym__simple_statements] = STATE(709), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(817), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20997,58 +20997,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [98] = { - [sym__simple_statements] = STATE(726), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(2579), + [sym_import_statement] = STATE(2489), + [sym_future_import_statement] = STATE(2489), + [sym_import_from_statement] = STATE(2489), + [sym_print_statement] = STATE(2489), + [sym_assert_statement] = STATE(2489), + [sym_expression_statement] = STATE(2489), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2489), + [sym_delete_statement] = STATE(2489), + [sym_raise_statement] = STATE(2489), + [sym_pass_statement] = STATE(2489), + [sym_break_statement] = STATE(2489), + [sym_continue_statement] = STATE(2489), + [sym_global_statement] = STATE(2489), + [sym_nonlocal_statement] = STATE(2489), + [sym_exec_statement] = STATE(2489), + [sym_type_alias_statement] = STATE(2489), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21090,58 +21090,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [99] = { - [sym__simple_statements] = STATE(712), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(702), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21183,58 +21183,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [100] = { - [sym__simple_statements] = STATE(618), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(725), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21276,58 +21276,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [101] = { - [sym__simple_statements] = STATE(846), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21369,58 +21369,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [102] = { - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(814), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21462,58 +21462,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [103] = { - [sym__simple_statements] = STATE(810), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__simple_statements] = STATE(720), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21555,58 +21555,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [104] = { + [sym__simple_statements] = STATE(617), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(413), + [anon_sym_async] = ACTIONS(415), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(485), + [sym__indent] = ACTIONS(487), + [sym_string_start] = ACTIONS(81), + }, + [105] = { + [sym__simple_statements] = STATE(818), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(413), + [anon_sym_async] = ACTIONS(415), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(489), + [sym__indent] = ACTIONS(491), + [sym_string_start] = ACTIONS(81), + }, + [106] = { + [sym__simple_statements] = STATE(694), + [sym_import_statement] = STATE(2334), + [sym_future_import_statement] = STATE(2334), + [sym_import_from_statement] = STATE(2334), + [sym_print_statement] = STATE(2334), + [sym_assert_statement] = STATE(2334), + [sym_expression_statement] = STATE(2334), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2334), + [sym_delete_statement] = STATE(2334), + [sym_raise_statement] = STATE(2334), + [sym_pass_statement] = STATE(2334), + [sym_break_statement] = STATE(2334), + [sym_continue_statement] = STATE(2334), + [sym_global_statement] = STATE(2334), + [sym_nonlocal_statement] = STATE(2334), + [sym_exec_statement] = STATE(2334), + [sym_type_alias_statement] = STATE(2334), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(413), + [anon_sym_async] = ACTIONS(415), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(493), + [sym__indent] = ACTIONS(495), + [sym_string_start] = ACTIONS(81), + }, + [107] = { [sym__simple_statements] = STATE(676), - [sym_import_statement] = STATE(2341), - [sym_future_import_statement] = STATE(2341), - [sym_import_from_statement] = STATE(2341), - [sym_print_statement] = STATE(2341), - [sym_assert_statement] = STATE(2341), - [sym_expression_statement] = STATE(2341), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2341), - [sym_delete_statement] = STATE(2341), - [sym_raise_statement] = STATE(2341), - [sym_pass_statement] = STATE(2341), - [sym_break_statement] = STATE(2341), - [sym_continue_statement] = STATE(2341), - [sym_global_statement] = STATE(2341), - [sym_nonlocal_statement] = STATE(2341), - [sym_exec_statement] = STATE(2341), - [sym_type_alias_statement] = STATE(2341), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2334), + [sym_future_import_statement] = STATE(2334), + [sym_import_from_statement] = STATE(2334), + [sym_print_statement] = STATE(2334), + [sym_assert_statement] = STATE(2334), + [sym_expression_statement] = STATE(2334), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2334), + [sym_delete_statement] = STATE(2334), + [sym_raise_statement] = STATE(2334), + [sym_pass_statement] = STATE(2334), + [sym_break_statement] = STATE(2334), + [sym_continue_statement] = STATE(2334), + [sym_global_statement] = STATE(2334), + [sym_nonlocal_statement] = STATE(2334), + [sym_exec_statement] = STATE(2334), + [sym_type_alias_statement] = STATE(2334), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21643,63 +21922,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(485), - [sym__indent] = ACTIONS(487), + [sym__newline] = ACTIONS(497), + [sym__indent] = ACTIONS(499), [sym_string_start] = ACTIONS(81), }, - [105] = { - [sym__simple_statements] = STATE(650), - [sym_import_statement] = STATE(2374), - [sym_future_import_statement] = STATE(2374), - [sym_import_from_statement] = STATE(2374), - [sym_print_statement] = STATE(2374), - [sym_assert_statement] = STATE(2374), - [sym_expression_statement] = STATE(2374), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2374), - [sym_delete_statement] = STATE(2374), - [sym_raise_statement] = STATE(2374), - [sym_pass_statement] = STATE(2374), - [sym_break_statement] = STATE(2374), - [sym_continue_statement] = STATE(2374), - [sym_global_statement] = STATE(2374), - [sym_nonlocal_statement] = STATE(2374), - [sym_exec_statement] = STATE(2374), - [sym_type_alias_statement] = STATE(2374), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [108] = { + [sym__simple_statements] = STATE(813), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21736,63 +22015,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(489), - [sym__indent] = ACTIONS(491), + [sym__newline] = ACTIONS(501), + [sym__indent] = ACTIONS(503), [sym_string_start] = ACTIONS(81), }, - [106] = { - [sym__simple_statements] = STATE(793), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [109] = { + [sym__simple_statements] = STATE(649), + [sym_import_statement] = STATE(2334), + [sym_future_import_statement] = STATE(2334), + [sym_import_from_statement] = STATE(2334), + [sym_print_statement] = STATE(2334), + [sym_assert_statement] = STATE(2334), + [sym_expression_statement] = STATE(2334), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2334), + [sym_delete_statement] = STATE(2334), + [sym_raise_statement] = STATE(2334), + [sym_pass_statement] = STATE(2334), + [sym_break_statement] = STATE(2334), + [sym_continue_statement] = STATE(2334), + [sym_global_statement] = STATE(2334), + [sym_nonlocal_statement] = STATE(2334), + [sym_exec_statement] = STATE(2334), + [sym_type_alias_statement] = STATE(2334), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21829,63 +22108,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(493), - [sym__indent] = ACTIONS(495), + [sym__newline] = ACTIONS(505), + [sym__indent] = ACTIONS(507), [sym_string_start] = ACTIONS(81), }, - [107] = { - [sym__simple_statements] = STATE(759), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [110] = { + [sym__simple_statements] = STATE(724), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21922,63 +22201,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(497), - [sym__indent] = ACTIONS(499), + [sym__newline] = ACTIONS(509), + [sym__indent] = ACTIONS(511), [sym_string_start] = ACTIONS(81), }, - [108] = { - [sym__simple_statements] = STATE(797), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [111] = { + [sym__simple_statements] = STATE(829), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22015,63 +22294,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(501), - [sym__indent] = ACTIONS(503), + [sym__newline] = ACTIONS(513), + [sym__indent] = ACTIONS(515), [sym_string_start] = ACTIONS(81), }, - [109] = { - [sym__simple_statements] = STATE(700), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [112] = { + [sym__simple_statements] = STATE(793), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22108,63 +22387,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(505), - [sym__indent] = ACTIONS(507), + [sym__newline] = ACTIONS(517), + [sym__indent] = ACTIONS(519), [sym_string_start] = ACTIONS(81), }, - [110] = { - [sym__simple_statements] = STATE(710), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [113] = { + [sym__simple_statements] = STATE(849), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22201,63 +22480,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(509), - [sym__indent] = ACTIONS(511), + [sym__newline] = ACTIONS(521), + [sym__indent] = ACTIONS(523), [sym_string_start] = ACTIONS(81), }, - [111] = { - [sym__simple_statements] = STATE(2518), - [sym_import_statement] = STATE(2299), - [sym_future_import_statement] = STATE(2299), - [sym_import_from_statement] = STATE(2299), - [sym_print_statement] = STATE(2299), - [sym_assert_statement] = STATE(2299), - [sym_expression_statement] = STATE(2299), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2299), - [sym_delete_statement] = STATE(2299), - [sym_raise_statement] = STATE(2299), - [sym_pass_statement] = STATE(2299), - [sym_break_statement] = STATE(2299), - [sym_continue_statement] = STATE(2299), - [sym_global_statement] = STATE(2299), - [sym_nonlocal_statement] = STATE(2299), - [sym_exec_statement] = STATE(2299), - [sym_type_alias_statement] = STATE(2299), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [114] = { + [sym__simple_statements] = STATE(712), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22294,63 +22573,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(513), - [sym__indent] = ACTIONS(515), + [sym__newline] = ACTIONS(525), + [sym__indent] = ACTIONS(527), [sym_string_start] = ACTIONS(81), }, - [112] = { - [sym__simple_statements] = STATE(703), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [115] = { + [sym__simple_statements] = STATE(806), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22387,63 +22666,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(517), - [sym__indent] = ACTIONS(519), + [sym__newline] = ACTIONS(529), + [sym__indent] = ACTIONS(531), [sym_string_start] = ACTIONS(81), }, - [113] = { - [sym__simple_statements] = STATE(615), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [116] = { + [sym__simple_statements] = STATE(2583), + [sym_import_statement] = STATE(2489), + [sym_future_import_statement] = STATE(2489), + [sym_import_from_statement] = STATE(2489), + [sym_print_statement] = STATE(2489), + [sym_assert_statement] = STATE(2489), + [sym_expression_statement] = STATE(2489), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2489), + [sym_delete_statement] = STATE(2489), + [sym_raise_statement] = STATE(2489), + [sym_pass_statement] = STATE(2489), + [sym_break_statement] = STATE(2489), + [sym_continue_statement] = STATE(2489), + [sym_global_statement] = STATE(2489), + [sym_nonlocal_statement] = STATE(2489), + [sym_exec_statement] = STATE(2489), + [sym_type_alias_statement] = STATE(2489), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22480,63 +22759,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(521), - [sym__indent] = ACTIONS(523), + [sym__newline] = ACTIONS(533), + [sym__indent] = ACTIONS(535), [sym_string_start] = ACTIONS(81), }, - [114] = { - [sym__simple_statements] = STATE(713), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [117] = { + [sym__simple_statements] = STATE(655), + [sym_import_statement] = STATE(2415), + [sym_future_import_statement] = STATE(2415), + [sym_import_from_statement] = STATE(2415), + [sym_print_statement] = STATE(2415), + [sym_assert_statement] = STATE(2415), + [sym_expression_statement] = STATE(2415), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2415), + [sym_delete_statement] = STATE(2415), + [sym_raise_statement] = STATE(2415), + [sym_pass_statement] = STATE(2415), + [sym_break_statement] = STATE(2415), + [sym_continue_statement] = STATE(2415), + [sym_global_statement] = STATE(2415), + [sym_nonlocal_statement] = STATE(2415), + [sym_exec_statement] = STATE(2415), + [sym_type_alias_statement] = STATE(2415), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22573,63 +22852,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(525), - [sym__indent] = ACTIONS(527), + [sym__newline] = ACTIONS(537), + [sym__indent] = ACTIONS(539), [sym_string_start] = ACTIONS(81), }, - [115] = { - [sym__simple_statements] = STATE(669), - [sym_import_statement] = STATE(2436), - [sym_future_import_statement] = STATE(2436), - [sym_import_from_statement] = STATE(2436), - [sym_print_statement] = STATE(2436), - [sym_assert_statement] = STATE(2436), - [sym_expression_statement] = STATE(2436), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2436), - [sym_delete_statement] = STATE(2436), - [sym_raise_statement] = STATE(2436), - [sym_pass_statement] = STATE(2436), - [sym_break_statement] = STATE(2436), - [sym_continue_statement] = STATE(2436), - [sym_global_statement] = STATE(2436), - [sym_nonlocal_statement] = STATE(2436), - [sym_exec_statement] = STATE(2436), - [sym_type_alias_statement] = STATE(2436), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [118] = { + [sym__simple_statements] = STATE(707), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22666,63 +22945,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(529), - [sym__indent] = ACTIONS(531), + [sym__newline] = ACTIONS(541), + [sym__indent] = ACTIONS(543), [sym_string_start] = ACTIONS(81), }, - [116] = { - [sym__simple_statements] = STATE(2576), - [sym_import_statement] = STATE(2299), - [sym_future_import_statement] = STATE(2299), - [sym_import_from_statement] = STATE(2299), - [sym_print_statement] = STATE(2299), - [sym_assert_statement] = STATE(2299), - [sym_expression_statement] = STATE(2299), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2299), - [sym_delete_statement] = STATE(2299), - [sym_raise_statement] = STATE(2299), - [sym_pass_statement] = STATE(2299), - [sym_break_statement] = STATE(2299), - [sym_continue_statement] = STATE(2299), - [sym_global_statement] = STATE(2299), - [sym_nonlocal_statement] = STATE(2299), - [sym_exec_statement] = STATE(2299), - [sym_type_alias_statement] = STATE(2299), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [119] = { + [sym__simple_statements] = STATE(810), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22759,63 +23038,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(533), - [sym__indent] = ACTIONS(535), + [sym__newline] = ACTIONS(545), + [sym__indent] = ACTIONS(547), [sym_string_start] = ACTIONS(81), }, - [117] = { - [sym__simple_statements] = STATE(745), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [120] = { + [sym__simple_statements] = STATE(2550), + [sym_import_statement] = STATE(2489), + [sym_future_import_statement] = STATE(2489), + [sym_import_from_statement] = STATE(2489), + [sym_print_statement] = STATE(2489), + [sym_assert_statement] = STATE(2489), + [sym_expression_statement] = STATE(2489), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2489), + [sym_delete_statement] = STATE(2489), + [sym_raise_statement] = STATE(2489), + [sym_pass_statement] = STATE(2489), + [sym_break_statement] = STATE(2489), + [sym_continue_statement] = STATE(2489), + [sym_global_statement] = STATE(2489), + [sym_nonlocal_statement] = STATE(2489), + [sym_exec_statement] = STATE(2489), + [sym_type_alias_statement] = STATE(2489), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22852,63 +23131,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(537), - [sym__indent] = ACTIONS(539), + [sym__newline] = ACTIONS(549), + [sym__indent] = ACTIONS(551), [sym_string_start] = ACTIONS(81), }, - [118] = { - [sym__simple_statements] = STATE(806), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [121] = { + [sym__simple_statements] = STATE(697), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22945,63 +23224,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(541), - [sym__indent] = ACTIONS(543), + [sym__newline] = ACTIONS(553), + [sym__indent] = ACTIONS(555), [sym_string_start] = ACTIONS(81), }, - [119] = { - [sym__simple_statements] = STATE(2581), - [sym_import_statement] = STATE(2299), - [sym_future_import_statement] = STATE(2299), - [sym_import_from_statement] = STATE(2299), - [sym_print_statement] = STATE(2299), - [sym_assert_statement] = STATE(2299), - [sym_expression_statement] = STATE(2299), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2299), - [sym_delete_statement] = STATE(2299), - [sym_raise_statement] = STATE(2299), - [sym_pass_statement] = STATE(2299), - [sym_break_statement] = STATE(2299), - [sym_continue_statement] = STATE(2299), - [sym_global_statement] = STATE(2299), - [sym_nonlocal_statement] = STATE(2299), - [sym_exec_statement] = STATE(2299), - [sym_type_alias_statement] = STATE(2299), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [122] = { + [sym__simple_statements] = STATE(692), + [sym_import_statement] = STATE(2453), + [sym_future_import_statement] = STATE(2453), + [sym_import_from_statement] = STATE(2453), + [sym_print_statement] = STATE(2453), + [sym_assert_statement] = STATE(2453), + [sym_expression_statement] = STATE(2453), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2453), + [sym_delete_statement] = STATE(2453), + [sym_raise_statement] = STATE(2453), + [sym_pass_statement] = STATE(2453), + [sym_break_statement] = STATE(2453), + [sym_continue_statement] = STATE(2453), + [sym_global_statement] = STATE(2453), + [sym_nonlocal_statement] = STATE(2453), + [sym_exec_statement] = STATE(2453), + [sym_type_alias_statement] = STATE(2453), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23038,63 +23317,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(545), - [sym__indent] = ACTIONS(547), + [sym__newline] = ACTIONS(557), + [sym__indent] = ACTIONS(559), [sym_string_start] = ACTIONS(81), }, - [120] = { - [sym__simple_statements] = STATE(807), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [123] = { + [sym__simple_statements] = STATE(740), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23131,63 +23410,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(549), - [sym__indent] = ACTIONS(551), + [sym__newline] = ACTIONS(561), + [sym__indent] = ACTIONS(563), [sym_string_start] = ACTIONS(81), }, - [121] = { - [sym__simple_statements] = STATE(1788), - [sym_import_statement] = STATE(2452), - [sym_future_import_statement] = STATE(2452), - [sym_import_from_statement] = STATE(2452), - [sym_print_statement] = STATE(2452), - [sym_assert_statement] = STATE(2452), - [sym_expression_statement] = STATE(2452), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2452), - [sym_delete_statement] = STATE(2452), - [sym_raise_statement] = STATE(2452), - [sym_pass_statement] = STATE(2452), - [sym_break_statement] = STATE(2452), - [sym_continue_statement] = STATE(2452), - [sym_global_statement] = STATE(2452), - [sym_nonlocal_statement] = STATE(2452), - [sym_exec_statement] = STATE(2452), - [sym_type_alias_statement] = STATE(2452), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [124] = { + [sym__simple_statements] = STATE(738), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23224,63 +23503,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(553), - [sym__indent] = ACTIONS(555), + [sym__newline] = ACTIONS(565), + [sym__indent] = ACTIONS(567), [sym_string_start] = ACTIONS(81), }, - [122] = { - [sym__simple_statements] = STATE(668), - [sym_import_statement] = STATE(2341), - [sym_future_import_statement] = STATE(2341), - [sym_import_from_statement] = STATE(2341), - [sym_print_statement] = STATE(2341), - [sym_assert_statement] = STATE(2341), - [sym_expression_statement] = STATE(2341), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2341), - [sym_delete_statement] = STATE(2341), - [sym_raise_statement] = STATE(2341), - [sym_pass_statement] = STATE(2341), - [sym_break_statement] = STATE(2341), - [sym_continue_statement] = STATE(2341), - [sym_global_statement] = STATE(2341), - [sym_nonlocal_statement] = STATE(2341), - [sym_exec_statement] = STATE(2341), - [sym_type_alias_statement] = STATE(2341), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [125] = { + [sym__simple_statements] = STATE(2586), + [sym_import_statement] = STATE(2489), + [sym_future_import_statement] = STATE(2489), + [sym_import_from_statement] = STATE(2489), + [sym_print_statement] = STATE(2489), + [sym_assert_statement] = STATE(2489), + [sym_expression_statement] = STATE(2489), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2489), + [sym_delete_statement] = STATE(2489), + [sym_raise_statement] = STATE(2489), + [sym_pass_statement] = STATE(2489), + [sym_break_statement] = STATE(2489), + [sym_continue_statement] = STATE(2489), + [sym_global_statement] = STATE(2489), + [sym_nonlocal_statement] = STATE(2489), + [sym_exec_statement] = STATE(2489), + [sym_type_alias_statement] = STATE(2489), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23317,63 +23596,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(557), - [sym__indent] = ACTIONS(559), + [sym__newline] = ACTIONS(569), + [sym__indent] = ACTIONS(571), [sym_string_start] = ACTIONS(81), }, - [123] = { - [sym__simple_statements] = STATE(815), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [126] = { + [sym__simple_statements] = STATE(709), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23410,63 +23689,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(561), - [sym__indent] = ACTIONS(563), + [sym__newline] = ACTIONS(573), + [sym__indent] = ACTIONS(575), [sym_string_start] = ACTIONS(81), }, - [124] = { - [sym__simple_statements] = STATE(685), - [sym_import_statement] = STATE(2436), - [sym_future_import_statement] = STATE(2436), - [sym_import_from_statement] = STATE(2436), - [sym_print_statement] = STATE(2436), - [sym_assert_statement] = STATE(2436), - [sym_expression_statement] = STATE(2436), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2436), - [sym_delete_statement] = STATE(2436), - [sym_raise_statement] = STATE(2436), - [sym_pass_statement] = STATE(2436), - [sym_break_statement] = STATE(2436), - [sym_continue_statement] = STATE(2436), - [sym_global_statement] = STATE(2436), - [sym_nonlocal_statement] = STATE(2436), - [sym_exec_statement] = STATE(2436), - [sym_type_alias_statement] = STATE(2436), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [127] = { + [sym__simple_statements] = STATE(673), + [sym_import_statement] = STATE(2453), + [sym_future_import_statement] = STATE(2453), + [sym_import_from_statement] = STATE(2453), + [sym_print_statement] = STATE(2453), + [sym_assert_statement] = STATE(2453), + [sym_expression_statement] = STATE(2453), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2453), + [sym_delete_statement] = STATE(2453), + [sym_raise_statement] = STATE(2453), + [sym_pass_statement] = STATE(2453), + [sym_break_statement] = STATE(2453), + [sym_continue_statement] = STATE(2453), + [sym_global_statement] = STATE(2453), + [sym_nonlocal_statement] = STATE(2453), + [sym_exec_statement] = STATE(2453), + [sym_type_alias_statement] = STATE(2453), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23503,63 +23782,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(565), - [sym__indent] = ACTIONS(567), + [sym__newline] = ACTIONS(577), + [sym__indent] = ACTIONS(579), [sym_string_start] = ACTIONS(81), }, - [125] = { - [sym__simple_statements] = STATE(749), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [128] = { + [sym__simple_statements] = STATE(823), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23596,63 +23875,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(569), - [sym__indent] = ACTIONS(571), + [sym__newline] = ACTIONS(581), + [sym__indent] = ACTIONS(583), [sym_string_start] = ACTIONS(81), }, - [126] = { - [sym__simple_statements] = STATE(791), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [129] = { + [sym__simple_statements] = STATE(2594), + [sym_import_statement] = STATE(2489), + [sym_future_import_statement] = STATE(2489), + [sym_import_from_statement] = STATE(2489), + [sym_print_statement] = STATE(2489), + [sym_assert_statement] = STATE(2489), + [sym_expression_statement] = STATE(2489), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2489), + [sym_delete_statement] = STATE(2489), + [sym_raise_statement] = STATE(2489), + [sym_pass_statement] = STATE(2489), + [sym_break_statement] = STATE(2489), + [sym_continue_statement] = STATE(2489), + [sym_global_statement] = STATE(2489), + [sym_nonlocal_statement] = STATE(2489), + [sym_exec_statement] = STATE(2489), + [sym_type_alias_statement] = STATE(2489), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23689,63 +23968,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(573), - [sym__indent] = ACTIONS(575), + [sym__newline] = ACTIONS(585), + [sym__indent] = ACTIONS(587), [sym_string_start] = ACTIONS(81), }, - [127] = { - [sym__simple_statements] = STATE(675), - [sym_import_statement] = STATE(2436), - [sym_future_import_statement] = STATE(2436), - [sym_import_from_statement] = STATE(2436), - [sym_print_statement] = STATE(2436), - [sym_assert_statement] = STATE(2436), - [sym_expression_statement] = STATE(2436), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2436), - [sym_delete_statement] = STATE(2436), - [sym_raise_statement] = STATE(2436), - [sym_pass_statement] = STATE(2436), - [sym_break_statement] = STATE(2436), - [sym_continue_statement] = STATE(2436), - [sym_global_statement] = STATE(2436), - [sym_nonlocal_statement] = STATE(2436), - [sym_exec_statement] = STATE(2436), - [sym_type_alias_statement] = STATE(2436), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [130] = { + [sym__simple_statements] = STATE(789), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23782,63 +24061,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(577), - [sym__indent] = ACTIONS(579), + [sym__newline] = ACTIONS(589), + [sym__indent] = ACTIONS(591), [sym_string_start] = ACTIONS(81), }, - [128] = { - [sym__simple_statements] = STATE(2531), - [sym_import_statement] = STATE(2299), - [sym_future_import_statement] = STATE(2299), - [sym_import_from_statement] = STATE(2299), - [sym_print_statement] = STATE(2299), - [sym_assert_statement] = STATE(2299), - [sym_expression_statement] = STATE(2299), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2299), - [sym_delete_statement] = STATE(2299), - [sym_raise_statement] = STATE(2299), - [sym_pass_statement] = STATE(2299), - [sym_break_statement] = STATE(2299), - [sym_continue_statement] = STATE(2299), - [sym_global_statement] = STATE(2299), - [sym_nonlocal_statement] = STATE(2299), - [sym_exec_statement] = STATE(2299), - [sym_type_alias_statement] = STATE(2299), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [131] = { + [sym__simple_statements] = STATE(791), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23875,63 +24154,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(581), - [sym__indent] = ACTIONS(583), + [sym__newline] = ACTIONS(593), + [sym__indent] = ACTIONS(595), [sym_string_start] = ACTIONS(81), }, - [129] = { - [sym__simple_statements] = STATE(648), - [sym_import_statement] = STATE(2260), - [sym_future_import_statement] = STATE(2260), - [sym_import_from_statement] = STATE(2260), - [sym_print_statement] = STATE(2260), - [sym_assert_statement] = STATE(2260), - [sym_expression_statement] = STATE(2260), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2260), - [sym_delete_statement] = STATE(2260), - [sym_raise_statement] = STATE(2260), - [sym_pass_statement] = STATE(2260), - [sym_break_statement] = STATE(2260), - [sym_continue_statement] = STATE(2260), - [sym_global_statement] = STATE(2260), - [sym_nonlocal_statement] = STATE(2260), - [sym_exec_statement] = STATE(2260), - [sym_type_alias_statement] = STATE(2260), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [132] = { + [sym__simple_statements] = STATE(711), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23968,63 +24247,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(585), - [sym__indent] = ACTIONS(587), + [sym__newline] = ACTIONS(597), + [sym__indent] = ACTIONS(599), [sym_string_start] = ACTIONS(81), }, - [130] = { - [sym__simple_statements] = STATE(821), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [133] = { + [sym__simple_statements] = STATE(736), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24061,63 +24340,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(589), - [sym__indent] = ACTIONS(591), + [sym__newline] = ACTIONS(601), + [sym__indent] = ACTIONS(603), [sym_string_start] = ACTIONS(81), }, - [131] = { - [sym__simple_statements] = STATE(757), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [134] = { + [sym__simple_statements] = STATE(835), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24154,63 +24433,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(593), - [sym__indent] = ACTIONS(595), + [sym__newline] = ACTIONS(605), + [sym__indent] = ACTIONS(607), [sym_string_start] = ACTIONS(81), }, - [132] = { - [sym__simple_statements] = STATE(823), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [135] = { + [sym__simple_statements] = STATE(795), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24247,63 +24526,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(597), - [sym__indent] = ACTIONS(599), + [sym__newline] = ACTIONS(609), + [sym__indent] = ACTIONS(611), [sym_string_start] = ACTIONS(81), }, - [133] = { - [sym__simple_statements] = STATE(1799), - [sym_import_statement] = STATE(2452), - [sym_future_import_statement] = STATE(2452), - [sym_import_from_statement] = STATE(2452), - [sym_print_statement] = STATE(2452), - [sym_assert_statement] = STATE(2452), - [sym_expression_statement] = STATE(2452), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2452), - [sym_delete_statement] = STATE(2452), - [sym_raise_statement] = STATE(2452), - [sym_pass_statement] = STATE(2452), - [sym_break_statement] = STATE(2452), - [sym_continue_statement] = STATE(2452), - [sym_global_statement] = STATE(2452), - [sym_nonlocal_statement] = STATE(2452), - [sym_exec_statement] = STATE(2452), - [sym_type_alias_statement] = STATE(2452), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [136] = { + [sym__simple_statements] = STATE(618), + [sym_import_statement] = STATE(2243), + [sym_future_import_statement] = STATE(2243), + [sym_import_from_statement] = STATE(2243), + [sym_print_statement] = STATE(2243), + [sym_assert_statement] = STATE(2243), + [sym_expression_statement] = STATE(2243), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2243), + [sym_delete_statement] = STATE(2243), + [sym_raise_statement] = STATE(2243), + [sym_pass_statement] = STATE(2243), + [sym_break_statement] = STATE(2243), + [sym_continue_statement] = STATE(2243), + [sym_global_statement] = STATE(2243), + [sym_nonlocal_statement] = STATE(2243), + [sym_exec_statement] = STATE(2243), + [sym_type_alias_statement] = STATE(2243), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24340,63 +24619,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(601), - [sym__indent] = ACTIONS(603), + [sym__newline] = ACTIONS(613), + [sym__indent] = ACTIONS(615), [sym_string_start] = ACTIONS(81), }, - [134] = { - [sym__simple_statements] = STATE(2516), - [sym_import_statement] = STATE(2299), - [sym_future_import_statement] = STATE(2299), - [sym_import_from_statement] = STATE(2299), - [sym_print_statement] = STATE(2299), - [sym_assert_statement] = STATE(2299), - [sym_expression_statement] = STATE(2299), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2299), - [sym_delete_statement] = STATE(2299), - [sym_raise_statement] = STATE(2299), - [sym_pass_statement] = STATE(2299), - [sym_break_statement] = STATE(2299), - [sym_continue_statement] = STATE(2299), - [sym_global_statement] = STATE(2299), - [sym_nonlocal_statement] = STATE(2299), - [sym_exec_statement] = STATE(2299), - [sym_type_alias_statement] = STATE(2299), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [137] = { + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24433,339 +24711,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(605), - [sym__indent] = ACTIONS(607), + [sym__newline] = ACTIONS(617), [sym_string_start] = ACTIONS(81), }, - [135] = { - [sym__simple_statements] = STATE(824), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(609), - [sym__indent] = ACTIONS(611), - [sym_string_start] = ACTIONS(81), - }, - [136] = { - [sym__simple_statements] = STATE(740), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(613), - [sym__indent] = ACTIONS(615), - [sym_string_start] = ACTIONS(81), - }, - [137] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(617), - [sym_string_start] = ACTIONS(81), - }, - [138] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [138] = { + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24806,57 +24806,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [139] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24897,57 +24897,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [140] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24988,57 +24988,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [141] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25079,57 +25079,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [142] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25170,57 +25170,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [143] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25261,57 +25261,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [144] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25352,57 +25352,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [145] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25443,57 +25443,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [146] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25534,57 +25534,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [147] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25625,57 +25625,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [148] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25716,57 +25716,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [149] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25807,57 +25807,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [150] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25898,57 +25898,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [151] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25989,57 +25989,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [152] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26080,57 +26080,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [153] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_import_statement] = STATE(2556), + [sym_future_import_statement] = STATE(2556), + [sym_import_from_statement] = STATE(2556), + [sym_print_statement] = STATE(2556), + [sym_assert_statement] = STATE(2556), + [sym_expression_statement] = STATE(2556), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2775), + [sym_return_statement] = STATE(2556), + [sym_delete_statement] = STATE(2556), + [sym_raise_statement] = STATE(2556), + [sym_pass_statement] = STATE(2556), + [sym_break_statement] = STATE(2556), + [sym_continue_statement] = STATE(2556), + [sym_global_statement] = STATE(2556), + [sym_nonlocal_statement] = STATE(2556), + [sym_exec_statement] = STATE(2556), + [sym_type_alias_statement] = STATE(2556), + [sym_pattern] = STATE(1639), + [sym_tuple_pattern] = STATE(1644), + [sym_list_pattern] = STATE(1644), + [sym_list_splat_pattern] = STATE(632), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2504), + [sym_augmented_assignment] = STATE(2504), + [sym_pattern_list] = STATE(1651), + [sym_yield] = STATE(2504), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26170,25 +26170,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [154] = { - [sym_list_splat_pattern] = STATE(1119), - [sym_primary_expression] = STATE(981), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_attribute] = STATE(1035), - [sym_subscript] = STATE(1035), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_list_splat_pattern] = STATE(1118), + [sym_primary_expression] = STATE(987), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_attribute] = STATE(1130), + [sym_subscript] = STATE(1130), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(77), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -26207,7 +26207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(279), [anon_sym_exec] = ACTIONS(653), [anon_sym_type] = ACTIONS(655), - [anon_sym_EQ] = ACTIONS(302), + [anon_sym_EQ] = ACTIONS(294), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(659), @@ -26232,19 +26232,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), @@ -26258,25 +26258,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [155] = { - [sym_list_splat_pattern] = STATE(1119), - [sym_primary_expression] = STATE(981), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_attribute] = STATE(1035), - [sym_subscript] = STATE(1035), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_list_splat_pattern] = STATE(1118), + [sym_primary_expression] = STATE(987), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_attribute] = STATE(1130), + [sym_subscript] = STATE(1130), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(77), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -26288,14 +26288,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(302), + [anon_sym_COLON] = ACTIONS(326), [anon_sym_match] = ACTIONS(655), [anon_sym_async] = ACTIONS(653), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(279), [anon_sym_exec] = ACTIONS(653), [anon_sym_type] = ACTIONS(655), - [anon_sym_EQ] = ACTIONS(302), + [anon_sym_EQ] = ACTIONS(294), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(659), @@ -26320,19 +26320,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), @@ -26346,26 +26346,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [156] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1107), + [sym_binary_operator] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_subscript] = STATE(1339), + [sym_call] = STATE(1339), + [sym_list] = STATE(1339), + [sym_set] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_dictionary] = STATE(1339), + [sym_list_comprehension] = STATE(1339), + [sym_dictionary_comprehension] = STATE(1339), + [sym_set_comprehension] = STATE(1339), + [sym_generator_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_concatenated_string] = STATE(1339), + [sym_string] = STATE(1033), + [sym_await] = STATE(1339), + [sym_identifier] = ACTIONS(320), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_DOT] = ACTIONS(665), [anon_sym_LPAREN] = ACTIONS(668), @@ -26387,7 +26387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(665), [anon_sym_DASH] = ACTIONS(680), [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(307), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_not] = ACTIONS(670), [anon_sym_and] = ACTIONS(670), @@ -26398,7 +26398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(665), [anon_sym_CARET] = ACTIONS(665), [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(312), [anon_sym_is] = ACTIONS(670), [anon_sym_LT] = ACTIONS(670), [anon_sym_LT_EQ] = ACTIONS(663), @@ -26420,38 +26420,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(663), [anon_sym_CARET_EQ] = ACTIONS(663), [anon_sym_PIPE_EQ] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(663), - [sym_string_start] = ACTIONS(327), + [sym_string_start] = ACTIONS(324), }, [157] = { - [sym_list_splat_pattern] = STATE(1119), - [sym_primary_expression] = STATE(981), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_attribute] = STATE(1035), - [sym_subscript] = STATE(1035), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_list_splat_pattern] = STATE(1118), + [sym_primary_expression] = STATE(987), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_attribute] = STATE(1130), + [sym_subscript] = STATE(1130), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(77), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -26509,25 +26509,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [158] = { - [sym_list_splat_pattern] = STATE(1119), - [sym_primary_expression] = STATE(981), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_attribute] = STATE(1035), - [sym_subscript] = STATE(1035), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_list_splat_pattern] = STATE(1118), + [sym_primary_expression] = STATE(987), + [sym_binary_operator] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_attribute] = STATE(1130), + [sym_subscript] = STATE(1130), + [sym_call] = STATE(1130), + [sym_list] = STATE(1130), + [sym_set] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_dictionary] = STATE(1130), + [sym_list_comprehension] = STATE(1130), + [sym_dictionary_comprehension] = STATE(1130), + [sym_set_comprehension] = STATE(1130), + [sym_generator_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_concatenated_string] = STATE(1130), + [sym_string] = STATE(967), + [sym_await] = STATE(1130), [sym_identifier] = ACTIONS(77), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -26584,25 +26584,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [159] = { - [sym_list_splat_pattern] = STATE(1214), - [sym_primary_expression] = STATE(1026), - [sym_binary_operator] = STATE(1172), - [sym_unary_operator] = STATE(1172), - [sym_attribute] = STATE(1172), - [sym_subscript] = STATE(1172), - [sym_call] = STATE(1172), - [sym_list] = STATE(1172), - [sym_set] = STATE(1172), - [sym_tuple] = STATE(1172), - [sym_dictionary] = STATE(1172), - [sym_list_comprehension] = STATE(1172), - [sym_dictionary_comprehension] = STATE(1172), - [sym_set_comprehension] = STATE(1172), - [sym_generator_expression] = STATE(1172), - [sym_parenthesized_expression] = STATE(1172), - [sym_concatenated_string] = STATE(1172), - [sym_string] = STATE(975), - [sym_await] = STATE(1172), + [sym_list_splat_pattern] = STATE(1183), + [sym_primary_expression] = STATE(989), + [sym_binary_operator] = STATE(1208), + [sym_unary_operator] = STATE(1208), + [sym_attribute] = STATE(1208), + [sym_subscript] = STATE(1208), + [sym_call] = STATE(1208), + [sym_list] = STATE(1208), + [sym_set] = STATE(1208), + [sym_tuple] = STATE(1208), + [sym_dictionary] = STATE(1208), + [sym_list_comprehension] = STATE(1208), + [sym_dictionary_comprehension] = STATE(1208), + [sym_set_comprehension] = STATE(1208), + [sym_generator_expression] = STATE(1208), + [sym_parenthesized_expression] = STATE(1208), + [sym_concatenated_string] = STATE(1208), + [sym_string] = STATE(981), + [sym_await] = STATE(1208), [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(686), @@ -26659,25 +26659,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(704), }, [160] = { - [sym_list_splat_pattern] = STATE(1214), - [sym_primary_expression] = STATE(1026), - [sym_binary_operator] = STATE(1172), - [sym_unary_operator] = STATE(1172), - [sym_attribute] = STATE(1172), - [sym_subscript] = STATE(1172), - [sym_call] = STATE(1172), - [sym_list] = STATE(1172), - [sym_set] = STATE(1172), - [sym_tuple] = STATE(1172), - [sym_dictionary] = STATE(1172), - [sym_list_comprehension] = STATE(1172), - [sym_dictionary_comprehension] = STATE(1172), - [sym_set_comprehension] = STATE(1172), - [sym_generator_expression] = STATE(1172), - [sym_parenthesized_expression] = STATE(1172), - [sym_concatenated_string] = STATE(1172), - [sym_string] = STATE(975), - [sym_await] = STATE(1172), + [sym_list_splat_pattern] = STATE(1183), + [sym_primary_expression] = STATE(989), + [sym_binary_operator] = STATE(1208), + [sym_unary_operator] = STATE(1208), + [sym_attribute] = STATE(1208), + [sym_subscript] = STATE(1208), + [sym_call] = STATE(1208), + [sym_list] = STATE(1208), + [sym_set] = STATE(1208), + [sym_tuple] = STATE(1208), + [sym_dictionary] = STATE(1208), + [sym_list_comprehension] = STATE(1208), + [sym_dictionary_comprehension] = STATE(1208), + [sym_set_comprehension] = STATE(1208), + [sym_generator_expression] = STATE(1208), + [sym_parenthesized_expression] = STATE(1208), + [sym_concatenated_string] = STATE(1208), + [sym_string] = STATE(981), + [sym_await] = STATE(1208), [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(686), @@ -26734,26 +26734,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(704), }, [161] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1107), + [sym_binary_operator] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_subscript] = STATE(1339), + [sym_call] = STATE(1339), + [sym_list] = STATE(1339), + [sym_set] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_dictionary] = STATE(1339), + [sym_list_comprehension] = STATE(1339), + [sym_dictionary_comprehension] = STATE(1339), + [sym_set_comprehension] = STATE(1339), + [sym_generator_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_concatenated_string] = STATE(1339), + [sym_string] = STATE(1033), + [sym_await] = STATE(1339), + [sym_identifier] = ACTIONS(320), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_DOT] = ACTIONS(665), [anon_sym_from] = ACTIONS(670), @@ -26774,10 +26774,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(670), [anon_sym_LBRACK] = ACTIONS(678), [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(312), [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(315), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(312), [anon_sym_not] = ACTIONS(670), [anon_sym_and] = ACTIONS(670), [anon_sym_or] = ACTIONS(670), @@ -26787,7 +26787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(706), [anon_sym_CARET] = ACTIONS(706), [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(312), [anon_sym_is] = ACTIONS(670), [anon_sym_LT] = ACTIONS(670), [anon_sym_LT_EQ] = ACTIONS(663), @@ -26796,39 +26796,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(663), [anon_sym_GT] = ACTIONS(670), [anon_sym_LT_GT] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(663), - [sym_string_start] = ACTIONS(327), + [sym_string_start] = ACTIONS(324), }, [162] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1107), + [sym_binary_operator] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_subscript] = STATE(1339), + [sym_call] = STATE(1339), + [sym_list] = STATE(1339), + [sym_set] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_dictionary] = STATE(1339), + [sym_list_comprehension] = STATE(1339), + [sym_dictionary_comprehension] = STATE(1339), + [sym_set_comprehension] = STATE(1339), + [sym_generator_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_concatenated_string] = STATE(1339), + [sym_string] = STATE(1033), + [sym_await] = STATE(1339), + [sym_identifier] = ACTIONS(320), [anon_sym_DOT] = ACTIONS(665), [anon_sym_LPAREN] = ACTIONS(668), [anon_sym_COMMA] = ACTIONS(663), @@ -26848,11 +26848,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(670), [anon_sym_LBRACK] = ACTIONS(678), [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(312), [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(307), [anon_sym_RBRACE] = ACTIONS(663), - [anon_sym_PLUS] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(312), [anon_sym_not] = ACTIONS(670), [anon_sym_and] = ACTIONS(670), [anon_sym_or] = ACTIONS(670), @@ -26862,7 +26862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(706), [anon_sym_CARET] = ACTIONS(706), [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(312), [anon_sym_is] = ACTIONS(670), [anon_sym_LT] = ACTIONS(670), [anon_sym_LT_EQ] = ACTIONS(663), @@ -26871,116 +26871,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(663), [anon_sym_GT] = ACTIONS(670), [anon_sym_LT_GT] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(321), + [sym_ellipsis] = ACTIONS(318), [sym_type_conversion] = ACTIONS(663), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), + [sym_string_start] = ACTIONS(324), }, [163] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), - [anon_sym_DOT] = ACTIONS(665), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1107), + [sym_binary_operator] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_subscript] = STATE(1339), + [sym_call] = STATE(1339), + [sym_list] = STATE(1339), + [sym_set] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_dictionary] = STATE(1339), + [sym_list_comprehension] = STATE(1339), + [sym_dictionary_comprehension] = STATE(1339), + [sym_set_comprehension] = STATE(1339), + [sym_generator_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_concatenated_string] = STATE(1339), + [sym_string] = STATE(1033), + [sym_await] = STATE(1339), + [sym_identifier] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_as] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_as] = ACTIONS(279), [anon_sym_STAR] = ACTIONS(672), [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_if] = ACTIONS(670), - [anon_sym_COLON] = ACTIONS(663), + [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_match] = ACTIONS(676), [anon_sym_async] = ACTIONS(674), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_in] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(674), [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(670), + [anon_sym_EQ] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_not] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_is] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_LT_GT] = ACTIONS(277), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(324), + }, + [164] = { + [sym_list_splat_pattern] = STATE(1183), + [sym_primary_expression] = STATE(989), + [sym_binary_operator] = STATE(1208), + [sym_unary_operator] = STATE(1208), + [sym_attribute] = STATE(1208), + [sym_subscript] = STATE(1208), + [sym_call] = STATE(1208), + [sym_list] = STATE(1208), + [sym_set] = STATE(1208), + [sym_tuple] = STATE(1208), + [sym_dictionary] = STATE(1208), + [sym_list_comprehension] = STATE(1208), + [sym_dictionary_comprehension] = STATE(1208), + [sym_set_comprehension] = STATE(1208), + [sym_generator_expression] = STATE(1208), + [sym_parenthesized_expression] = STATE(1208), + [sym_concatenated_string] = STATE(1208), + [sym_string] = STATE(981), + [sym_await] = STATE(1208), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(706), + [anon_sym_as] = ACTIONS(665), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_print] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_COLON_EQ] = ACTIONS(292), + [anon_sym_if] = ACTIONS(665), + [anon_sym_COLON] = ACTIONS(670), + [anon_sym_match] = ACTIONS(692), + [anon_sym_async] = ACTIONS(690), + [anon_sym_for] = ACTIONS(670), + [anon_sym_in] = ACTIONS(665), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_exec] = ACTIONS(690), + [anon_sym_type] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(696), [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(315), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(670), - [anon_sym_or] = ACTIONS(670), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_not] = ACTIONS(665), + [anon_sym_and] = ACTIONS(665), + [anon_sym_or] = ACTIONS(665), [anon_sym_SLASH] = ACTIONS(665), [anon_sym_PERCENT] = ACTIONS(706), [anon_sym_SLASH_SLASH] = ACTIONS(706), [anon_sym_AMP] = ACTIONS(706), [anon_sym_CARET] = ACTIONS(706), [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_LT_GT] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_is] = ACTIONS(665), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_LT_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_GT_EQ] = ACTIONS(706), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_LT_GT] = ACTIONS(706), + [sym_ellipsis] = ACTIONS(700), + [sym_integer] = ACTIONS(684), + [sym_float] = ACTIONS(700), + [anon_sym_await] = ACTIONS(702), + [sym_true] = ACTIONS(684), + [sym_false] = ACTIONS(684), + [sym_none] = ACTIONS(684), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), + [sym_string_start] = ACTIONS(704), }, - [164] = { - [sym_list_splat_pattern] = STATE(1388), - [sym_primary_expression] = STATE(1096), - [sym_binary_operator] = STATE(1270), - [sym_unary_operator] = STATE(1270), - [sym_attribute] = STATE(1270), - [sym_subscript] = STATE(1270), - [sym_call] = STATE(1270), - [sym_list] = STATE(1270), - [sym_set] = STATE(1270), - [sym_tuple] = STATE(1270), - [sym_dictionary] = STATE(1270), - [sym_list_comprehension] = STATE(1270), - [sym_dictionary_comprehension] = STATE(1270), - [sym_set_comprehension] = STATE(1270), - [sym_generator_expression] = STATE(1270), - [sym_parenthesized_expression] = STATE(1270), - [sym_concatenated_string] = STATE(1270), - [sym_string] = STATE(1028), - [sym_await] = STATE(1270), + [165] = { + [sym_list_splat_pattern] = STATE(1212), + [sym_primary_expression] = STATE(1030), + [sym_binary_operator] = STATE(1171), + [sym_unary_operator] = STATE(1171), + [sym_attribute] = STATE(1171), + [sym_subscript] = STATE(1171), + [sym_call] = STATE(1171), + [sym_list] = STATE(1171), + [sym_set] = STATE(1171), + [sym_tuple] = STATE(1171), + [sym_dictionary] = STATE(1171), + [sym_list_comprehension] = STATE(1171), + [sym_dictionary_comprehension] = STATE(1171), + [sym_set_comprehension] = STATE(1171), + [sym_generator_expression] = STATE(1171), + [sym_parenthesized_expression] = STATE(1171), + [sym_concatenated_string] = STATE(1171), + [sym_string] = STATE(982), + [sym_await] = STATE(1171), [sym_identifier] = ACTIONS(709), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), [anon_sym_STAR] = ACTIONS(713), @@ -26991,16 +27064,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(279), [anon_sym_match] = ACTIONS(717), [anon_sym_async] = ACTIONS(715), + [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(715), [anon_sym_type] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(719), [anon_sym_AT] = ACTIONS(277), [anon_sym_DASH] = ACTIONS(721), [anon_sym_PIPE] = ACTIONS(277), [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(277), [anon_sym_PLUS] = ACTIONS(721), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), @@ -27031,26 +27105,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(729), }, - [165] = { - [sym_list_splat_pattern] = STATE(1214), - [sym_primary_expression] = STATE(1026), - [sym_binary_operator] = STATE(1172), - [sym_unary_operator] = STATE(1172), - [sym_attribute] = STATE(1172), - [sym_subscript] = STATE(1172), - [sym_call] = STATE(1172), - [sym_list] = STATE(1172), - [sym_set] = STATE(1172), - [sym_tuple] = STATE(1172), - [sym_dictionary] = STATE(1172), - [sym_list_comprehension] = STATE(1172), - [sym_dictionary_comprehension] = STATE(1172), - [sym_set_comprehension] = STATE(1172), - [sym_generator_expression] = STATE(1172), - [sym_parenthesized_expression] = STATE(1172), - [sym_concatenated_string] = STATE(1172), - [sym_string] = STATE(975), - [sym_await] = STATE(1172), + [166] = { + [sym_list_splat_pattern] = STATE(1264), + [sym_primary_expression] = STATE(1036), + [sym_binary_operator] = STATE(1381), + [sym_unary_operator] = STATE(1381), + [sym_attribute] = STATE(1381), + [sym_subscript] = STATE(1381), + [sym_call] = STATE(1381), + [sym_list] = STATE(1381), + [sym_set] = STATE(1381), + [sym_tuple] = STATE(1381), + [sym_dictionary] = STATE(1381), + [sym_list_comprehension] = STATE(1381), + [sym_dictionary_comprehension] = STATE(1381), + [sym_set_comprehension] = STATE(1381), + [sym_generator_expression] = STATE(1381), + [sym_parenthesized_expression] = STATE(1381), + [sym_concatenated_string] = STATE(1381), + [sym_string] = STATE(1003), + [sym_await] = STATE(1381), + [sym_identifier] = ACTIONS(731), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_as] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(735), + [anon_sym_print] = ACTIONS(737), + [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(292), + [anon_sym_if] = ACTIONS(279), + [anon_sym_match] = ACTIONS(739), + [anon_sym_async] = ACTIONS(737), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_exec] = ACTIONS(737), + [anon_sym_type] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_not] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_is] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_LT_GT] = ACTIONS(277), + [sym_ellipsis] = ACTIONS(749), + [sym_integer] = ACTIONS(731), + [sym_float] = ACTIONS(749), + [anon_sym_await] = ACTIONS(751), + [sym_true] = ACTIONS(731), + [sym_false] = ACTIONS(731), + [sym_none] = ACTIONS(731), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(753), + }, + [167] = { + [sym_list_splat_pattern] = STATE(1183), + [sym_primary_expression] = STATE(989), + [sym_binary_operator] = STATE(1208), + [sym_unary_operator] = STATE(1208), + [sym_attribute] = STATE(1208), + [sym_subscript] = STATE(1208), + [sym_call] = STATE(1208), + [sym_list] = STATE(1208), + [sym_set] = STATE(1208), + [sym_tuple] = STATE(1208), + [sym_dictionary] = STATE(1208), + [sym_list_comprehension] = STATE(1208), + [sym_dictionary_comprehension] = STATE(1208), + [sym_set_comprehension] = STATE(1208), + [sym_generator_expression] = STATE(1208), + [sym_parenthesized_expression] = STATE(1208), + [sym_concatenated_string] = STATE(1208), + [sym_string] = STATE(981), + [sym_await] = STATE(1208), [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(686), @@ -27105,51 +27253,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(704), }, - [166] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), + [168] = { + [sym_list_splat_pattern] = STATE(1413), + [sym_primary_expression] = STATE(1125), + [sym_binary_operator] = STATE(1380), + [sym_unary_operator] = STATE(1380), + [sym_attribute] = STATE(1380), + [sym_subscript] = STATE(1380), + [sym_call] = STATE(1380), + [sym_list] = STATE(1380), + [sym_set] = STATE(1380), + [sym_tuple] = STATE(1380), + [sym_dictionary] = STATE(1380), + [sym_list_comprehension] = STATE(1380), + [sym_dictionary_comprehension] = STATE(1380), + [sym_set_comprehension] = STATE(1380), + [sym_generator_expression] = STATE(1380), + [sym_parenthesized_expression] = STATE(1380), + [sym_concatenated_string] = STATE(1380), + [sym_string] = STATE(1025), + [sym_await] = STATE(1380), + [sym_identifier] = ACTIONS(755), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_print] = ACTIONS(761), [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_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), + [anon_sym_match] = ACTIONS(763), + [anon_sym_async] = ACTIONS(761), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), + [anon_sym_exec] = ACTIONS(761), + [anon_sym_type] = ACTIONS(763), [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(765), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(767), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(315), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -27159,7 +27307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(767), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -27168,48 +27316,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), + [sym_ellipsis] = ACTIONS(771), + [sym_integer] = ACTIONS(755), + [sym_float] = ACTIONS(771), + [anon_sym_await] = ACTIONS(773), + [sym_true] = ACTIONS(755), + [sym_false] = ACTIONS(755), + [sym_none] = ACTIONS(755), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(775), + }, + [169] = { + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1107), + [sym_binary_operator] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_subscript] = STATE(1339), + [sym_call] = STATE(1339), + [sym_list] = STATE(1339), + [sym_set] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_dictionary] = STATE(1339), + [sym_list_comprehension] = STATE(1339), + [sym_dictionary_comprehension] = STATE(1339), + [sym_set_comprehension] = STATE(1339), + [sym_generator_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_concatenated_string] = STATE(1339), + [sym_string] = STATE(1033), + [sym_await] = STATE(1339), + [sym_identifier] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_RPAREN] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_as] = ACTIONS(670), + [anon_sym_STAR] = ACTIONS(672), + [anon_sym_print] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_if] = ACTIONS(670), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_match] = ACTIONS(676), + [anon_sym_async] = ACTIONS(674), + [anon_sym_for] = ACTIONS(670), + [anon_sym_in] = ACTIONS(670), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_exec] = ACTIONS(674), + [anon_sym_type] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_not] = ACTIONS(670), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(670), + [anon_sym_SLASH] = ACTIONS(665), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_is] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_LT_GT] = ACTIONS(663), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), + [sym_string_start] = ACTIONS(324), }, - [167] = { - [sym_list_splat_pattern] = STATE(1203), - [sym_primary_expression] = STATE(988), - [sym_binary_operator] = STATE(1138), - [sym_unary_operator] = STATE(1138), - [sym_attribute] = STATE(1138), - [sym_subscript] = STATE(1138), - [sym_call] = STATE(1138), - [sym_list] = STATE(1138), - [sym_set] = STATE(1138), - [sym_tuple] = STATE(1138), - [sym_dictionary] = STATE(1138), - [sym_list_comprehension] = STATE(1138), - [sym_dictionary_comprehension] = STATE(1138), - [sym_set_comprehension] = STATE(1138), - [sym_generator_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_concatenated_string] = STATE(1138), - [sym_string] = STATE(971), - [sym_await] = STATE(1138), + [170] = { + [sym_list_splat_pattern] = STATE(1264), + [sym_primary_expression] = STATE(1036), + [sym_binary_operator] = STATE(1381), + [sym_unary_operator] = STATE(1381), + [sym_attribute] = STATE(1381), + [sym_subscript] = STATE(1381), + [sym_call] = STATE(1381), + [sym_list] = STATE(1381), + [sym_set] = STATE(1381), + [sym_tuple] = STATE(1381), + [sym_dictionary] = STATE(1381), + [sym_list_comprehension] = STATE(1381), + [sym_dictionary_comprehension] = STATE(1381), + [sym_set_comprehension] = STATE(1381), + [sym_generator_expression] = STATE(1381), + [sym_parenthesized_expression] = STATE(1381), + [sym_concatenated_string] = STATE(1381), + [sym_string] = STATE(1003), + [sym_await] = STATE(1381), [sym_identifier] = ACTIONS(731), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(284), [anon_sym_as] = ACTIONS(279), [anon_sym_STAR] = ACTIONS(735), [anon_sym_print] = ACTIONS(737), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), [anon_sym_match] = ACTIONS(739), [anon_sym_async] = ACTIONS(737), [anon_sym_for] = ACTIONS(279), @@ -27217,13 +27439,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(737), [anon_sym_type] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(743), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(745), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_PLUS] = ACTIONS(745), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -27233,7 +27454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(743), + [anon_sym_TILDE] = ACTIONS(745), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -27242,62 +27463,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(747), + [sym_ellipsis] = ACTIONS(749), [sym_integer] = ACTIONS(731), - [sym_float] = ACTIONS(747), - [anon_sym_await] = ACTIONS(749), + [sym_float] = ACTIONS(749), + [anon_sym_await] = ACTIONS(751), [sym_true] = ACTIONS(731), [sym_false] = ACTIONS(731), [sym_none] = ACTIONS(731), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(751), + [sym_string_start] = ACTIONS(753), }, - [168] = { - [sym_list_splat_pattern] = STATE(1214), - [sym_primary_expression] = STATE(1026), - [sym_binary_operator] = STATE(1172), - [sym_unary_operator] = STATE(1172), - [sym_attribute] = STATE(1172), - [sym_subscript] = STATE(1172), - [sym_call] = STATE(1172), - [sym_list] = STATE(1172), - [sym_set] = STATE(1172), - [sym_tuple] = STATE(1172), - [sym_dictionary] = STATE(1172), - [sym_list_comprehension] = STATE(1172), - [sym_dictionary_comprehension] = STATE(1172), - [sym_set_comprehension] = STATE(1172), - [sym_generator_expression] = STATE(1172), - [sym_parenthesized_expression] = STATE(1172), - [sym_concatenated_string] = STATE(1172), - [sym_string] = STATE(975), - [sym_await] = STATE(1172), - [sym_identifier] = ACTIONS(684), + [171] = { + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1107), + [sym_binary_operator] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_subscript] = STATE(1339), + [sym_call] = STATE(1339), + [sym_list] = STATE(1339), + [sym_set] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_dictionary] = STATE(1339), + [sym_list_comprehension] = STATE(1339), + [sym_dictionary_comprehension] = STATE(1339), + [sym_set_comprehension] = STATE(1339), + [sym_generator_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_concatenated_string] = STATE(1339), + [sym_string] = STATE(1033), + [sym_await] = STATE(1339), + [sym_identifier] = ACTIONS(320), [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_as] = ACTIONS(670), + [anon_sym_STAR] = ACTIONS(672), + [anon_sym_print] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_if] = ACTIONS(670), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_else] = ACTIONS(670), + [anon_sym_match] = ACTIONS(676), + [anon_sym_async] = ACTIONS(674), + [anon_sym_in] = ACTIONS(670), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_exec] = ACTIONS(674), + [anon_sym_type] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_not] = ACTIONS(670), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(670), + [anon_sym_SLASH] = ACTIONS(665), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_is] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_LT_GT] = ACTIONS(663), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(324), + }, + [172] = { + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1107), + [sym_binary_operator] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_subscript] = STATE(1339), + [sym_call] = STATE(1339), + [sym_list] = STATE(1339), + [sym_set] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_dictionary] = STATE(1339), + [sym_list_comprehension] = STATE(1339), + [sym_dictionary_comprehension] = STATE(1339), + [sym_set_comprehension] = STATE(1339), + [sym_generator_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_concatenated_string] = STATE(1339), + [sym_string] = STATE(1033), + [sym_await] = STATE(1339), + [sym_identifier] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_as] = ACTIONS(670), + [anon_sym_STAR] = ACTIONS(672), + [anon_sym_print] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_if] = ACTIONS(670), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_match] = ACTIONS(676), + [anon_sym_async] = ACTIONS(674), + [anon_sym_for] = ACTIONS(670), + [anon_sym_in] = ACTIONS(670), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_exec] = ACTIONS(674), + [anon_sym_type] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_RBRACK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_not] = ACTIONS(670), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(670), + [anon_sym_SLASH] = ACTIONS(665), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_is] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_LT_GT] = ACTIONS(663), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(324), + }, + [173] = { + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1107), + [sym_binary_operator] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_subscript] = STATE(1339), + [sym_call] = STATE(1339), + [sym_list] = STATE(1339), + [sym_set] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_dictionary] = STATE(1339), + [sym_list_comprehension] = STATE(1339), + [sym_dictionary_comprehension] = STATE(1339), + [sym_set_comprehension] = STATE(1339), + [sym_generator_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_concatenated_string] = STATE(1339), + [sym_string] = STATE(1033), + [sym_await] = STATE(1339), + [sym_identifier] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_as] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(672), + [anon_sym_print] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_else] = ACTIONS(279), + [anon_sym_match] = ACTIONS(676), + [anon_sym_async] = ACTIONS(674), + [anon_sym_in] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_exec] = ACTIONS(674), + [anon_sym_type] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_not] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_is] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_LT_GT] = ACTIONS(277), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(324), + }, + [174] = { + [sym_list_splat_pattern] = STATE(1413), + [sym_primary_expression] = STATE(1125), + [sym_binary_operator] = STATE(1380), + [sym_unary_operator] = STATE(1380), + [sym_attribute] = STATE(1380), + [sym_subscript] = STATE(1380), + [sym_call] = STATE(1380), + [sym_list] = STATE(1380), + [sym_set] = STATE(1380), + [sym_tuple] = STATE(1380), + [sym_dictionary] = STATE(1380), + [sym_list_comprehension] = STATE(1380), + [sym_dictionary_comprehension] = STATE(1380), + [sym_set_comprehension] = STATE(1380), + [sym_generator_expression] = STATE(1380), + [sym_parenthesized_expression] = STATE(1380), + [sym_concatenated_string] = STATE(1380), + [sym_string] = STATE(1025), + [sym_await] = STATE(1380), + [sym_identifier] = ACTIONS(755), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(706), [anon_sym_COMMA] = ACTIONS(706), [anon_sym_as] = ACTIONS(665), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_print] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_print] = ACTIONS(761), [anon_sym_GT_GT] = ACTIONS(706), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(665), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_match] = ACTIONS(692), - [anon_sym_async] = ACTIONS(690), + [anon_sym_match] = ACTIONS(763), + [anon_sym_async] = ACTIONS(761), [anon_sym_for] = ACTIONS(670), [anon_sym_in] = ACTIONS(665), [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(690), - [anon_sym_type] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_exec] = ACTIONS(761), + [anon_sym_type] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(765), [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(767), [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), [anon_sym_not] = ACTIONS(665), [anon_sym_and] = ACTIONS(665), [anon_sym_or] = ACTIONS(665), @@ -27307,7 +27746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(706), [anon_sym_CARET] = ACTIONS(706), [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(767), [anon_sym_is] = ACTIONS(665), [anon_sym_LT] = ACTIONS(665), [anon_sym_LT_EQ] = ACTIONS(706), @@ -27316,56 +27755,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(706), [anon_sym_GT] = ACTIONS(665), [anon_sym_LT_GT] = ACTIONS(706), - [sym_ellipsis] = ACTIONS(700), - [sym_integer] = ACTIONS(684), - [sym_float] = ACTIONS(700), - [anon_sym_await] = ACTIONS(702), - [sym_true] = ACTIONS(684), - [sym_false] = ACTIONS(684), - [sym_none] = ACTIONS(684), + [sym_ellipsis] = ACTIONS(771), + [sym_integer] = ACTIONS(755), + [sym_float] = ACTIONS(771), + [anon_sym_await] = ACTIONS(773), + [sym_true] = ACTIONS(755), + [sym_false] = ACTIONS(755), + [sym_none] = ACTIONS(755), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(704), + [sym_string_start] = ACTIONS(775), }, - [169] = { - [sym_list_splat_pattern] = STATE(1258), - [sym_primary_expression] = STATE(1122), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(1015), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(753), + [175] = { + [sym_list_splat_pattern] = STATE(1413), + [sym_primary_expression] = STATE(1125), + [sym_binary_operator] = STATE(1380), + [sym_unary_operator] = STATE(1380), + [sym_attribute] = STATE(1380), + [sym_subscript] = STATE(1380), + [sym_call] = STATE(1380), + [sym_list] = STATE(1380), + [sym_set] = STATE(1380), + [sym_tuple] = STATE(1380), + [sym_dictionary] = STATE(1380), + [sym_list_comprehension] = STATE(1380), + [sym_dictionary_comprehension] = STATE(1380), + [sym_set_comprehension] = STATE(1380), + [sym_generator_expression] = STATE(1380), + [sym_parenthesized_expression] = STATE(1380), + [sym_concatenated_string] = STATE(1380), + [sym_string] = STATE(1025), + [sym_await] = STATE(1380), + [sym_identifier] = ACTIONS(755), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(757), [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_print] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_print] = ACTIONS(761), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(761), - [anon_sym_async] = ACTIONS(759), - [anon_sym_for] = ACTIONS(279), + [anon_sym_match] = ACTIONS(763), + [anon_sym_async] = ACTIONS(761), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(759), - [anon_sym_type] = ACTIONS(761), - [anon_sym_EQ] = ACTIONS(763), + [anon_sym_exec] = ACTIONS(761), + [anon_sym_type] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(741), [anon_sym_LBRACK] = ACTIONS(765), [anon_sym_AT] = ACTIONS(277), [anon_sym_DASH] = ACTIONS(767), @@ -27391,36 +27829,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [sym_ellipsis] = ACTIONS(771), - [sym_integer] = ACTIONS(753), + [sym_integer] = ACTIONS(755), [sym_float] = ACTIONS(771), [anon_sym_await] = ACTIONS(773), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_none] = ACTIONS(753), + [sym_true] = ACTIONS(755), + [sym_false] = ACTIONS(755), + [sym_none] = ACTIONS(755), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(775), }, - [170] = { - [sym_list_splat_pattern] = STATE(1360), - [sym_primary_expression] = STATE(1076), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(996), - [sym_await] = STATE(1365), + [176] = { + [sym_list_splat_pattern] = STATE(1447), + [sym_primary_expression] = STATE(1195), + [sym_binary_operator] = STATE(1448), + [sym_unary_operator] = STATE(1448), + [sym_attribute] = STATE(1448), + [sym_subscript] = STATE(1448), + [sym_call] = STATE(1448), + [sym_list] = STATE(1448), + [sym_set] = STATE(1448), + [sym_tuple] = STATE(1448), + [sym_dictionary] = STATE(1448), + [sym_list_comprehension] = STATE(1448), + [sym_dictionary_comprehension] = STATE(1448), + [sym_set_comprehension] = STATE(1448), + [sym_generator_expression] = STATE(1448), + [sym_parenthesized_expression] = STATE(1448), + [sym_concatenated_string] = STATE(1448), + [sym_string] = STATE(1069), + [sym_await] = STATE(1448), [sym_identifier] = ACTIONS(777), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(779), @@ -27431,9 +27869,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(279), [anon_sym_match] = ACTIONS(785), [anon_sym_async] = ACTIONS(783), - [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(783), @@ -27474,50 +27912,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(797), }, - [171] = { - [sym_list_splat_pattern] = STATE(1203), - [sym_primary_expression] = STATE(988), - [sym_binary_operator] = STATE(1138), - [sym_unary_operator] = STATE(1138), - [sym_attribute] = STATE(1138), - [sym_subscript] = STATE(1138), - [sym_call] = STATE(1138), - [sym_list] = STATE(1138), - [sym_set] = STATE(1138), - [sym_tuple] = STATE(1138), - [sym_dictionary] = STATE(1138), - [sym_list_comprehension] = STATE(1138), - [sym_dictionary_comprehension] = STATE(1138), - [sym_set_comprehension] = STATE(1138), - [sym_generator_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_concatenated_string] = STATE(1138), - [sym_string] = STATE(971), - [sym_await] = STATE(1138), - [sym_identifier] = ACTIONS(731), + [177] = { + [sym_list_splat_pattern] = STATE(1413), + [sym_primary_expression] = STATE(1125), + [sym_binary_operator] = STATE(1380), + [sym_unary_operator] = STATE(1380), + [sym_attribute] = STATE(1380), + [sym_subscript] = STATE(1380), + [sym_call] = STATE(1380), + [sym_list] = STATE(1380), + [sym_set] = STATE(1380), + [sym_tuple] = STATE(1380), + [sym_dictionary] = STATE(1380), + [sym_list_comprehension] = STATE(1380), + [sym_dictionary_comprehension] = STATE(1380), + [sym_set_comprehension] = STATE(1380), + [sym_generator_expression] = STATE(1380), + [sym_parenthesized_expression] = STATE(1380), + [sym_concatenated_string] = STATE(1380), + [sym_string] = STATE(1025), + [sym_await] = STATE(1380), + [sym_identifier] = ACTIONS(755), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_print] = ACTIONS(737), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_print] = ACTIONS(761), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_if] = ACTIONS(279), [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(739), - [anon_sym_async] = ACTIONS(737), - [anon_sym_for] = ACTIONS(279), + [anon_sym_match] = ACTIONS(763), + [anon_sym_async] = ACTIONS(761), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(737), - [anon_sym_type] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), + [anon_sym_exec] = ACTIONS(761), + [anon_sym_type] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(765), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(767), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -27527,7 +27965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(743), + [anon_sym_TILDE] = ACTIONS(767), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -27536,110 +27974,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(747), - [sym_integer] = ACTIONS(731), - [sym_float] = ACTIONS(747), - [anon_sym_await] = ACTIONS(749), - [sym_true] = ACTIONS(731), - [sym_false] = ACTIONS(731), - [sym_none] = ACTIONS(731), + [sym_ellipsis] = ACTIONS(771), + [sym_integer] = ACTIONS(755), + [sym_float] = ACTIONS(771), + [anon_sym_await] = ACTIONS(773), + [sym_true] = ACTIONS(755), + [sym_false] = ACTIONS(755), + [sym_none] = ACTIONS(755), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(751), + [sym_string_start] = ACTIONS(775), }, - [172] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), - [anon_sym_DOT] = ACTIONS(665), + [178] = { + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1107), + [sym_binary_operator] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_subscript] = STATE(1339), + [sym_call] = STATE(1339), + [sym_list] = STATE(1339), + [sym_set] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_dictionary] = STATE(1339), + [sym_list_comprehension] = STATE(1339), + [sym_dictionary_comprehension] = STATE(1339), + [sym_set_comprehension] = STATE(1339), + [sym_generator_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_concatenated_string] = STATE(1339), + [sym_string] = STATE(1033), + [sym_await] = STATE(1339), + [sym_identifier] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_as] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(316), [anon_sym_STAR] = ACTIONS(672), [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_if] = ACTIONS(670), - [anon_sym_COLON] = ACTIONS(663), + [anon_sym_GT_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(316), [anon_sym_match] = ACTIONS(676), [anon_sym_async] = ACTIONS(674), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_STAR_STAR] = ACTIONS(279), [anon_sym_exec] = ACTIONS(674), [anon_sym_type] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(316), [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(315), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(670), - [anon_sym_or] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_LT_GT] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(680), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(680), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_SLASH_SLASH] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_CARET] = ACTIONS(279), + [anon_sym_LT_LT] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), + [sym__newline] = ACTIONS(316), + [sym_string_start] = ACTIONS(324), }, - [173] = { - [sym_list_splat_pattern] = STATE(1437), - [sym_primary_expression] = STATE(1218), - [sym_binary_operator] = STATE(1442), - [sym_unary_operator] = STATE(1442), - [sym_attribute] = STATE(1442), - [sym_subscript] = STATE(1442), - [sym_call] = STATE(1442), - [sym_list] = STATE(1442), - [sym_set] = STATE(1442), - [sym_tuple] = STATE(1442), - [sym_dictionary] = STATE(1442), - [sym_list_comprehension] = STATE(1442), - [sym_dictionary_comprehension] = STATE(1442), - [sym_set_comprehension] = STATE(1442), - [sym_generator_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_concatenated_string] = STATE(1442), - [sym_string] = STATE(1107), - [sym_await] = STATE(1442), + [179] = { + [sym_list_splat_pattern] = STATE(1307), + [sym_primary_expression] = STATE(1121), + [sym_binary_operator] = STATE(1404), + [sym_unary_operator] = STATE(1404), + [sym_attribute] = STATE(1404), + [sym_subscript] = STATE(1404), + [sym_call] = STATE(1404), + [sym_list] = STATE(1404), + [sym_set] = STATE(1404), + [sym_tuple] = STATE(1404), + [sym_dictionary] = STATE(1404), + [sym_list_comprehension] = STATE(1404), + [sym_dictionary_comprehension] = STATE(1404), + [sym_set_comprehension] = STATE(1404), + [sym_generator_expression] = STATE(1404), + [sym_parenthesized_expression] = STATE(1404), + [sym_concatenated_string] = STATE(1404), + [sym_string] = STATE(1022), + [sym_await] = STATE(1404), [sym_identifier] = ACTIONS(799), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(801), @@ -27650,9 +28088,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), [anon_sym_match] = ACTIONS(807), [anon_sym_async] = ACTIONS(805), + [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(805), @@ -27693,30 +28131,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(819), }, - [174] = { - [sym_list_splat_pattern] = STATE(1388), - [sym_primary_expression] = STATE(1096), - [sym_binary_operator] = STATE(1270), - [sym_unary_operator] = STATE(1270), - [sym_attribute] = STATE(1270), - [sym_subscript] = STATE(1270), - [sym_call] = STATE(1270), - [sym_list] = STATE(1270), - [sym_set] = STATE(1270), - [sym_tuple] = STATE(1270), - [sym_dictionary] = STATE(1270), - [sym_list_comprehension] = STATE(1270), - [sym_dictionary_comprehension] = STATE(1270), - [sym_set_comprehension] = STATE(1270), - [sym_generator_expression] = STATE(1270), - [sym_parenthesized_expression] = STATE(1270), - [sym_concatenated_string] = STATE(1270), - [sym_string] = STATE(1028), - [sym_await] = STATE(1270), + [180] = { + [sym_list_splat_pattern] = STATE(1212), + [sym_primary_expression] = STATE(1030), + [sym_binary_operator] = STATE(1171), + [sym_unary_operator] = STATE(1171), + [sym_attribute] = STATE(1171), + [sym_subscript] = STATE(1171), + [sym_call] = STATE(1171), + [sym_list] = STATE(1171), + [sym_set] = STATE(1171), + [sym_tuple] = STATE(1171), + [sym_dictionary] = STATE(1171), + [sym_list_comprehension] = STATE(1171), + [sym_dictionary_comprehension] = STATE(1171), + [sym_set_comprehension] = STATE(1171), + [sym_generator_expression] = STATE(1171), + [sym_parenthesized_expression] = STATE(1171), + [sym_concatenated_string] = STATE(1171), + [sym_string] = STATE(982), + [sym_await] = STATE(1171), [sym_identifier] = ACTIONS(709), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), [anon_sym_STAR] = ACTIONS(713), @@ -27726,16 +28163,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(277), [anon_sym_match] = ACTIONS(717), [anon_sym_async] = ACTIONS(715), + [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(715), [anon_sym_type] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(719), [anon_sym_AT] = ACTIONS(277), [anon_sym_DASH] = ACTIONS(721), [anon_sym_PIPE] = ACTIONS(277), [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(277), [anon_sym_PLUS] = ACTIONS(721), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), @@ -27766,50 +28204,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(729), }, - [175] = { - [sym_list_splat_pattern] = STATE(1258), - [sym_primary_expression] = STATE(1122), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(1015), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(753), + [181] = { + [sym_list_splat_pattern] = STATE(1264), + [sym_primary_expression] = STATE(1036), + [sym_binary_operator] = STATE(1381), + [sym_unary_operator] = STATE(1381), + [sym_attribute] = STATE(1381), + [sym_subscript] = STATE(1381), + [sym_call] = STATE(1381), + [sym_list] = STATE(1381), + [sym_set] = STATE(1381), + [sym_tuple] = STATE(1381), + [sym_dictionary] = STATE(1381), + [sym_list_comprehension] = STATE(1381), + [sym_dictionary_comprehension] = STATE(1381), + [sym_set_comprehension] = STATE(1381), + [sym_generator_expression] = STATE(1381), + [sym_parenthesized_expression] = STATE(1381), + [sym_concatenated_string] = STATE(1381), + [sym_string] = STATE(1003), + [sym_await] = STATE(1381), + [sym_identifier] = ACTIONS(731), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(284), - [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_print] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(735), + [anon_sym_print] = ACTIONS(737), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(761), - [anon_sym_async] = ACTIONS(759), + [anon_sym_match] = ACTIONS(739), + [anon_sym_async] = ACTIONS(737), [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(759), - [anon_sym_type] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_exec] = ACTIONS(737), + [anon_sym_type] = ACTIONS(739), + [anon_sym_LBRACK] = ACTIONS(743), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(745), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_PLUS] = ACTIONS(745), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -27819,7 +28257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(745), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -27828,208 +28266,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(771), - [sym_integer] = ACTIONS(753), - [sym_float] = ACTIONS(771), - [anon_sym_await] = ACTIONS(773), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_none] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(775), - }, - [176] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), - [anon_sym_SEMI] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(319), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(680), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_ellipsis] = ACTIONS(749), + [sym_integer] = ACTIONS(731), + [sym_float] = ACTIONS(749), + [anon_sym_await] = ACTIONS(751), + [sym_true] = ACTIONS(731), + [sym_false] = ACTIONS(731), + [sym_none] = ACTIONS(731), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(319), - [sym_string_start] = ACTIONS(327), + [sym_string_start] = ACTIONS(753), }, - [177] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), + [182] = { + [sym_list_splat_pattern] = STATE(1447), + [sym_primary_expression] = STATE(1195), + [sym_binary_operator] = STATE(1448), + [sym_unary_operator] = STATE(1448), + [sym_attribute] = STATE(1448), + [sym_subscript] = STATE(1448), + [sym_call] = STATE(1448), + [sym_list] = STATE(1448), + [sym_set] = STATE(1448), + [sym_tuple] = STATE(1448), + [sym_dictionary] = STATE(1448), + [sym_list_comprehension] = STATE(1448), + [sym_dictionary_comprehension] = STATE(1448), + [sym_set_comprehension] = STATE(1448), + [sym_generator_expression] = STATE(1448), + [sym_parenthesized_expression] = STATE(1448), + [sym_concatenated_string] = STATE(1448), + [sym_string] = STATE(1069), + [sym_await] = STATE(1448), + [sym_identifier] = ACTIONS(777), [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_as] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(706), + [anon_sym_as] = ACTIONS(665), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_print] = ACTIONS(783), [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_if] = ACTIONS(670), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_else] = ACTIONS(670), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_in] = ACTIONS(670), + [anon_sym_COLON_EQ] = ACTIONS(292), + [anon_sym_if] = ACTIONS(665), + [anon_sym_match] = ACTIONS(785), + [anon_sym_async] = ACTIONS(783), + [anon_sym_for] = ACTIONS(670), + [anon_sym_in] = ACTIONS(665), [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_exec] = ACTIONS(783), + [anon_sym_type] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_RBRACK] = ACTIONS(706), [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(789), [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(315), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(670), - [anon_sym_or] = ACTIONS(670), + [anon_sym_LBRACE] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_not] = ACTIONS(665), + [anon_sym_and] = ACTIONS(665), + [anon_sym_or] = ACTIONS(665), [anon_sym_SLASH] = ACTIONS(665), [anon_sym_PERCENT] = ACTIONS(706), [anon_sym_SLASH_SLASH] = ACTIONS(706), [anon_sym_AMP] = ACTIONS(706), [anon_sym_CARET] = ACTIONS(706), [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_LT_GT] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_is] = ACTIONS(665), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_LT_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_GT_EQ] = ACTIONS(706), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_LT_GT] = ACTIONS(706), + [sym_ellipsis] = ACTIONS(793), + [sym_integer] = ACTIONS(777), + [sym_float] = ACTIONS(793), + [anon_sym_await] = ACTIONS(795), + [sym_true] = ACTIONS(777), + [sym_false] = ACTIONS(777), + [sym_none] = ACTIONS(777), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), + [sym_string_start] = ACTIONS(797), }, - [178] = { - [sym_list_splat_pattern] = STATE(1360), - [sym_primary_expression] = STATE(1076), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(996), - [sym_await] = STATE(1365), - [sym_identifier] = ACTIONS(777), + [183] = { + [sym_list_splat_pattern] = STATE(1307), + [sym_primary_expression] = STATE(1121), + [sym_binary_operator] = STATE(1404), + [sym_unary_operator] = STATE(1404), + [sym_attribute] = STATE(1404), + [sym_subscript] = STATE(1404), + [sym_call] = STATE(1404), + [sym_list] = STATE(1404), + [sym_set] = STATE(1404), + [sym_tuple] = STATE(1404), + [sym_dictionary] = STATE(1404), + [sym_list_comprehension] = STATE(1404), + [sym_dictionary_comprehension] = STATE(1404), + [sym_set_comprehension] = STATE(1404), + [sym_generator_expression] = STATE(1404), + [sym_parenthesized_expression] = STATE(1404), + [sym_concatenated_string] = STATE(1404), + [sym_string] = STATE(1022), + [sym_await] = STATE(1404), + [sym_identifier] = ACTIONS(799), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(801), [anon_sym_COMMA] = ACTIONS(284), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_print] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_print] = ACTIONS(805), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(785), - [anon_sym_async] = ACTIONS(783), + [anon_sym_match] = ACTIONS(807), + [anon_sym_async] = ACTIONS(805), [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(783), - [anon_sym_type] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_exec] = ACTIONS(805), + [anon_sym_type] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(809), [anon_sym_RBRACK] = ACTIONS(284), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(811), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_not] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), [anon_sym_SLASH] = ACTIONS(279), @@ -28038,7 +28403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(811), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -28047,152 +28412,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(793), - [sym_integer] = ACTIONS(777), - [sym_float] = ACTIONS(793), - [anon_sym_await] = ACTIONS(795), - [sym_true] = ACTIONS(777), - [sym_false] = ACTIONS(777), - [sym_none] = ACTIONS(777), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(797), - }, - [179] = { - [sym_list_splat_pattern] = STATE(1388), - [sym_primary_expression] = STATE(1096), - [sym_binary_operator] = STATE(1270), - [sym_unary_operator] = STATE(1270), - [sym_attribute] = STATE(1270), - [sym_subscript] = STATE(1270), - [sym_call] = STATE(1270), - [sym_list] = STATE(1270), - [sym_set] = STATE(1270), - [sym_tuple] = STATE(1270), - [sym_dictionary] = STATE(1270), - [sym_list_comprehension] = STATE(1270), - [sym_dictionary_comprehension] = STATE(1270), - [sym_set_comprehension] = STATE(1270), - [sym_generator_expression] = STATE(1270), - [sym_parenthesized_expression] = STATE(1270), - [sym_concatenated_string] = STATE(1270), - [sym_string] = STATE(1028), - [sym_await] = STATE(1270), - [sym_identifier] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_COMMA] = ACTIONS(706), - [anon_sym_as] = ACTIONS(665), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_print] = ACTIONS(715), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(665), - [anon_sym_match] = ACTIONS(717), - [anon_sym_async] = ACTIONS(715), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(665), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(715), - [anon_sym_type] = ACTIONS(717), - [anon_sym_LBRACK] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(721), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(721), - [anon_sym_not] = ACTIONS(665), - [anon_sym_and] = ACTIONS(665), - [anon_sym_or] = ACTIONS(665), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(721), - [anon_sym_is] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_LT_GT] = ACTIONS(706), - [sym_ellipsis] = ACTIONS(725), - [sym_integer] = ACTIONS(709), - [sym_float] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [sym_true] = ACTIONS(709), - [sym_false] = ACTIONS(709), - [sym_none] = ACTIONS(709), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(729), - }, - [180] = { - [sym_list_splat_pattern] = STATE(1437), - [sym_primary_expression] = STATE(1218), - [sym_binary_operator] = STATE(1442), - [sym_unary_operator] = STATE(1442), - [sym_attribute] = STATE(1442), - [sym_subscript] = STATE(1442), - [sym_call] = STATE(1442), - [sym_list] = STATE(1442), - [sym_set] = STATE(1442), - [sym_tuple] = STATE(1442), - [sym_dictionary] = STATE(1442), - [sym_list_comprehension] = STATE(1442), - [sym_dictionary_comprehension] = STATE(1442), - [sym_set_comprehension] = STATE(1442), - [sym_generator_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_concatenated_string] = STATE(1442), - [sym_string] = STATE(1107), - [sym_await] = STATE(1442), - [sym_identifier] = ACTIONS(799), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_COMMA] = ACTIONS(706), - [anon_sym_as] = ACTIONS(665), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_print] = ACTIONS(805), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(665), - [anon_sym_match] = ACTIONS(807), - [anon_sym_async] = ACTIONS(805), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(665), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(805), - [anon_sym_type] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_RBRACK] = ACTIONS(706), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_not] = ACTIONS(665), - [anon_sym_and] = ACTIONS(665), - [anon_sym_or] = ACTIONS(665), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_is] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_LT_GT] = ACTIONS(706), [sym_ellipsis] = ACTIONS(815), [sym_integer] = ACTIONS(799), [sym_float] = ACTIONS(815), @@ -28204,196 +28423,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(819), }, - [181] = { - [sym_list_splat_pattern] = STATE(1388), - [sym_primary_expression] = STATE(1096), - [sym_binary_operator] = STATE(1270), - [sym_unary_operator] = STATE(1270), - [sym_attribute] = STATE(1270), - [sym_subscript] = STATE(1270), - [sym_call] = STATE(1270), - [sym_list] = STATE(1270), - [sym_set] = STATE(1270), - [sym_tuple] = STATE(1270), - [sym_dictionary] = STATE(1270), - [sym_list_comprehension] = STATE(1270), - [sym_dictionary_comprehension] = STATE(1270), - [sym_set_comprehension] = STATE(1270), - [sym_generator_expression] = STATE(1270), - [sym_parenthesized_expression] = STATE(1270), - [sym_concatenated_string] = STATE(1270), - [sym_string] = STATE(1028), - [sym_await] = STATE(1270), - [sym_identifier] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_print] = ACTIONS(715), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(717), - [anon_sym_async] = ACTIONS(715), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(715), - [anon_sym_type] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(721), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(721), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(721), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(725), - [sym_integer] = ACTIONS(709), - [sym_float] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [sym_true] = ACTIONS(709), - [sym_false] = ACTIONS(709), - [sym_none] = ACTIONS(709), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(729), - }, - [182] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_else] = ACTIONS(279), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(315), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), - }, - [183] = { - [sym_list_splat_pattern] = STATE(1258), - [sym_primary_expression] = STATE(1122), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(1015), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(753), + [184] = { + [sym_list_splat_pattern] = STATE(1264), + [sym_primary_expression] = STATE(1036), + [sym_binary_operator] = STATE(1381), + [sym_unary_operator] = STATE(1381), + [sym_attribute] = STATE(1381), + [sym_subscript] = STATE(1381), + [sym_call] = STATE(1381), + [sym_list] = STATE(1381), + [sym_set] = STATE(1381), + [sym_tuple] = STATE(1381), + [sym_dictionary] = STATE(1381), + [sym_list_comprehension] = STATE(1381), + [sym_dictionary_comprehension] = STATE(1381), + [sym_set_comprehension] = STATE(1381), + [sym_generator_expression] = STATE(1381), + [sym_parenthesized_expression] = STATE(1381), + [sym_concatenated_string] = STATE(1381), + [sym_string] = STATE(1003), + [sym_await] = STATE(1381), + [sym_identifier] = ACTIONS(731), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(733), [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_print] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(735), + [anon_sym_print] = ACTIONS(737), [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(761), - [anon_sym_async] = ACTIONS(759), + [anon_sym_match] = ACTIONS(739), + [anon_sym_async] = ACTIONS(737), [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(759), - [anon_sym_type] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_exec] = ACTIONS(737), + [anon_sym_type] = ACTIONS(739), + [anon_sym_LBRACK] = ACTIONS(743), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(745), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_PLUS] = ACTIONS(745), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -28403,7 +28475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(745), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -28412,37 +28484,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(771), - [sym_integer] = ACTIONS(753), - [sym_float] = ACTIONS(771), - [anon_sym_await] = ACTIONS(773), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_none] = ACTIONS(753), + [sym_ellipsis] = ACTIONS(749), + [sym_integer] = ACTIONS(731), + [sym_float] = ACTIONS(749), + [anon_sym_await] = ACTIONS(751), + [sym_true] = ACTIONS(731), + [sym_false] = ACTIONS(731), + [sym_none] = ACTIONS(731), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(775), + [sym_string_start] = ACTIONS(753), }, - [184] = { - [sym_list_splat_pattern] = STATE(1437), - [sym_primary_expression] = STATE(1218), - [sym_binary_operator] = STATE(1442), - [sym_unary_operator] = STATE(1442), - [sym_attribute] = STATE(1442), - [sym_subscript] = STATE(1442), - [sym_call] = STATE(1442), - [sym_list] = STATE(1442), - [sym_set] = STATE(1442), - [sym_tuple] = STATE(1442), - [sym_dictionary] = STATE(1442), - [sym_list_comprehension] = STATE(1442), - [sym_dictionary_comprehension] = STATE(1442), - [sym_set_comprehension] = STATE(1442), - [sym_generator_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_concatenated_string] = STATE(1442), - [sym_string] = STATE(1107), - [sym_await] = STATE(1442), + [185] = { + [sym_list_splat_pattern] = STATE(1307), + [sym_primary_expression] = STATE(1121), + [sym_binary_operator] = STATE(1404), + [sym_unary_operator] = STATE(1404), + [sym_attribute] = STATE(1404), + [sym_subscript] = STATE(1404), + [sym_call] = STATE(1404), + [sym_list] = STATE(1404), + [sym_set] = STATE(1404), + [sym_tuple] = STATE(1404), + [sym_dictionary] = STATE(1404), + [sym_list_comprehension] = STATE(1404), + [sym_dictionary_comprehension] = STATE(1404), + [sym_set_comprehension] = STATE(1404), + [sym_generator_expression] = STATE(1404), + [sym_parenthesized_expression] = STATE(1404), + [sym_concatenated_string] = STATE(1404), + [sym_string] = STATE(1022), + [sym_await] = STATE(1404), [sym_identifier] = ACTIONS(799), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(801), @@ -28452,9 +28524,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_print] = ACTIONS(805), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), [anon_sym_match] = ACTIONS(807), [anon_sym_async] = ACTIONS(805), + [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(805), @@ -28495,26 +28567,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(819), }, - [185] = { - [sym_list_splat_pattern] = STATE(1360), - [sym_primary_expression] = STATE(1076), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(996), - [sym_await] = STATE(1365), + [186] = { + [sym_list_splat_pattern] = STATE(1447), + [sym_primary_expression] = STATE(1195), + [sym_binary_operator] = STATE(1448), + [sym_unary_operator] = STATE(1448), + [sym_attribute] = STATE(1448), + [sym_subscript] = STATE(1448), + [sym_call] = STATE(1448), + [sym_list] = STATE(1448), + [sym_set] = STATE(1448), + [sym_tuple] = STATE(1448), + [sym_dictionary] = STATE(1448), + [sym_list_comprehension] = STATE(1448), + [sym_dictionary_comprehension] = STATE(1448), + [sym_set_comprehension] = STATE(1448), + [sym_generator_expression] = STATE(1448), + [sym_parenthesized_expression] = STATE(1448), + [sym_concatenated_string] = STATE(1448), + [sym_string] = STATE(1069), + [sym_await] = STATE(1448), [sym_identifier] = ACTIONS(777), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(779), @@ -28524,9 +28596,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_print] = ACTIONS(783), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(277), [anon_sym_match] = ACTIONS(785), [anon_sym_async] = ACTIONS(783), - [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(783), @@ -28567,99 +28639,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(797), }, - [186] = { - [sym_list_splat_pattern] = STATE(1258), - [sym_primary_expression] = STATE(1122), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(1015), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_print] = ACTIONS(759), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(761), - [anon_sym_async] = ACTIONS(759), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(759), - [anon_sym_type] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(765), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(771), - [sym_integer] = ACTIONS(753), - [sym_float] = ACTIONS(771), - [anon_sym_await] = ACTIONS(773), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_none] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(775), - }, [187] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1107), + [sym_binary_operator] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_subscript] = STATE(1339), + [sym_call] = STATE(1339), + [sym_list] = STATE(1339), + [sym_set] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_dictionary] = STATE(1339), + [sym_list_comprehension] = STATE(1339), + [sym_dictionary_comprehension] = STATE(1339), + [sym_set_comprehension] = STATE(1339), + [sym_generator_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_concatenated_string] = STATE(1339), + [sym_string] = STATE(1033), + [sym_await] = STATE(1339), + [sym_identifier] = ACTIONS(320), [anon_sym_DOT] = ACTIONS(665), [anon_sym_LPAREN] = ACTIONS(668), [anon_sym_COMMA] = ACTIONS(663), @@ -28677,7 +28677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(665), [anon_sym_DASH] = ACTIONS(680), [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(307), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_SLASH] = ACTIONS(665), [anon_sym_PERCENT] = ACTIONS(665), @@ -28685,7 +28685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(665), [anon_sym_CARET] = ACTIONS(665), [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(312), [anon_sym_PLUS_EQ] = ACTIONS(663), [anon_sym_DASH_EQ] = ACTIONS(663), [anon_sym_STAR_EQ] = ACTIONS(663), @@ -28699,56 +28699,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(663), [anon_sym_CARET_EQ] = ACTIONS(663), [anon_sym_PIPE_EQ] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), + [sym_string_start] = ACTIONS(324), }, [188] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1107), + [sym_binary_operator] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_subscript] = STATE(1339), + [sym_call] = STATE(1339), + [sym_list] = STATE(1339), + [sym_set] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_dictionary] = STATE(1339), + [sym_list_comprehension] = STATE(1339), + [sym_dictionary_comprehension] = STATE(1339), + [sym_set_comprehension] = STATE(1339), + [sym_generator_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_concatenated_string] = STATE(1339), + [sym_string] = STATE(1033), + [sym_await] = STATE(1339), + [sym_identifier] = ACTIONS(320), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(319), + [anon_sym_COMMA] = ACTIONS(316), [anon_sym_STAR] = ACTIONS(672), [anon_sym_print] = ACTIONS(674), [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(319), + [anon_sym_COLON] = ACTIONS(316), [anon_sym_match] = ACTIONS(676), [anon_sym_async] = ACTIONS(674), [anon_sym_STAR_STAR] = ACTIONS(279), [anon_sym_exec] = ACTIONS(674), [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(316), [anon_sym_LBRACK] = ACTIONS(678), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(680), [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(307), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(279), @@ -28756,49 +28756,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), + [sym_string_start] = ACTIONS(324), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 31, - ACTIONS(769), 1, + [0] = 30, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(821), 1, sym_identifier, ACTIONS(823), 1, anon_sym_LPAREN, ACTIONS(825), 1, - anon_sym_RPAREN, - ACTIONS(827), 1, anon_sym_STAR, - ACTIONS(833), 1, + ACTIONS(831), 1, anon_sym_LBRACK, + ACTIONS(833), 1, + anon_sym_RBRACK, ACTIONS(835), 1, anon_sym_not, ACTIONS(837), 1, @@ -28807,56 +28807,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(841), 1, anon_sym_await, - STATE(963), 1, + STATE(964), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1022), 1, sym_string, - STATE(1369), 1, + STATE(1409), 1, sym_list_splat_pattern, - STATE(1691), 1, + STATE(1716), 1, sym_expression, - STATE(2303), 1, - sym_yield, - STATE(2340), 1, + STATE(2410), 1, sym_pattern, - STATE(2625), 1, - sym__patterns, - STATE(2771), 1, + STATE(2690), 1, sym__named_expression_lhs, - STATE(2782), 1, + STATE(2741), 1, + sym__patterns, + STATE(2790), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(829), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, + STATE(1411), 2, sym_attribute, sym_subscript, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2573), 2, + STATE(2532), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(827), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2391), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28864,7 +28863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1404), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -28879,12 +28878,12 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [126] = 30, - ACTIONS(741), 1, + [124] = 30, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(729), 1, sym_string_start, ACTIONS(843), 1, sym_identifier, @@ -28906,32 +28905,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(865), 1, anon_sym_await, - STATE(912), 1, + STATE(904), 1, sym_primary_expression, - STATE(971), 1, + STATE(982), 1, sym_string, - STATE(1203), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1668), 1, + STATE(1657), 1, sym_expression, - STATE(1884), 1, + STATE(1867), 1, sym_pair, - STATE(2305), 1, + STATE(2444), 1, sym_dictionary_splat, - STATE(2637), 1, - sym__collection_elements, - STATE(2683), 1, + STATE(2605), 1, sym__named_expression_lhs, + STATE(2662), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -28939,16 +28938,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, + STATE(2275), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(731), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28956,7 +28955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28973,79 +28972,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [250] = 31, - ACTIONS(769), 1, + [248] = 30, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(833), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(863), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(865), 1, anon_sym_await, ACTIONS(867), 1, - anon_sym_RPAREN, - STATE(963), 1, + anon_sym_COMMA, + ACTIONS(869), 1, + anon_sym_RBRACE, + STATE(904), 1, sym_primary_expression, - STATE(1015), 1, + STATE(982), 1, sym_string, - STATE(1369), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1661), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2340), 1, - sym_pattern, - STATE(2602), 1, - sym__patterns, - STATE(2613), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(1837), 1, + sym_pair, + STATE(2244), 1, + sym_dictionary_splat, + STATE(2605), 1, sym__named_expression_lhs, + STATE(2769), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, - sym_attribute, - sym_subscript, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2573), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2275), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29053,9 +29049,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -29068,78 +29066,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [376] = 30, - ACTIONS(791), 1, + [372] = 30, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(821), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(831), 1, anon_sym_LBRACK, - ACTIONS(881), 1, - anon_sym_RBRACK, - ACTIONS(883), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(839), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(841), 1, anon_sym_await, - STATE(965), 1, + ACTIONS(871), 1, + anon_sym_RBRACK, + STATE(964), 1, sym_primary_expression, - STATE(996), 1, + STATE(1022), 1, sym_string, - STATE(1378), 1, + STATE(1409), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1697), 1, sym_expression, - STATE(2382), 1, + STATE(2410), 1, sym_pattern, - STATE(2611), 1, - sym__named_expression_lhs, - STATE(2626), 1, - sym__patterns, STATE(2654), 1, + sym__patterns, + STATE(2674), 1, sym__collection_elements, + STATE(2690), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(829), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1411), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2532), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(827), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2391), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29147,7 +29145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1404), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29162,76 +29160,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [500] = 30, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [496] = 31, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(873), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(875), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(877), 1, + anon_sym_RPAREN, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(859), 1, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(863), 1, - anon_sym_yield, - ACTIONS(865), 1, - anon_sym_await, ACTIONS(891), 1, - anon_sym_COMMA, + anon_sym_yield, ACTIONS(893), 1, - anon_sym_RBRACE, - STATE(912), 1, + anon_sym_await, + STATE(965), 1, sym_primary_expression, - STATE(971), 1, + STATE(1003), 1, sym_string, - STATE(1203), 1, + STATE(1378), 1, sym_list_splat_pattern, - STATE(1669), 1, + STATE(1685), 1, sym_expression, - STATE(1878), 1, - sym_pair, - STATE(2454), 1, - sym_dictionary_splat, - STATE(2675), 1, - sym__collection_elements, - STATE(2683), 1, + STATE(2250), 1, + sym_pattern, + STATE(2282), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, + STATE(2684), 1, + sym__patterns, + STATE(2720), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + STATE(1377), 2, + sym_attribute, + sym_subscript, + STATE(2247), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2596), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29239,11 +29240,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1381), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -29256,76 +29255,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [624] = 28, - ACTIONS(9), 1, + [622] = 31, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(873), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(875), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(641), 1, - sym_list_splat_pattern, - STATE(966), 1, - sym_primary_expression, - STATE(969), 1, + ACTIONS(895), 1, + anon_sym_RPAREN, + STATE(965), 1, + sym_primary_expression, + STATE(1003), 1, sym_string, - STATE(1630), 1, - sym_pattern_list, - STATE(1632), 1, - sym_pattern, - STATE(1778), 1, + STATE(1378), 1, + sym_list_splat_pattern, + STATE(1685), 1, sym_expression, - STATE(2751), 1, + STATE(2250), 1, + sym_pattern, + STATE(2282), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, + STATE(2720), 1, + sym__collection_elements, + STATE(2762), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(413), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(640), 2, + STATE(1377), 2, sym_attribute, sym_subscript, - STATE(1640), 2, + STATE(2247), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2596), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(415), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2584), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1666), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29333,7 +29335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 14, + STATE(1381), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29348,18 +29350,18 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [744] = 31, - ACTIONS(769), 1, + [748] = 30, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(821), 1, sym_identifier, ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(833), 1, + ACTIONS(831), 1, anon_sym_LBRACK, ACTIONS(835), 1, anon_sym_not, @@ -29369,58 +29371,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(841), 1, anon_sym_await, - ACTIONS(895), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(897), 1, + anon_sym_RBRACK, + STATE(964), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1022), 1, sym_string, - STATE(1369), 1, + STATE(1409), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1691), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2340), 1, + STATE(2410), 1, sym_pattern, - STATE(2613), 1, + STATE(2647), 1, sym__collection_elements, - STATE(2625), 1, - sym__patterns, - STATE(2771), 1, + STATE(2690), 1, sym__named_expression_lhs, + STATE(2741), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(829), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, + STATE(1411), 2, sym_attribute, sym_subscript, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2573), 2, + STATE(2532), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(827), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2391), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29428,7 +29429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1404), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29443,78 +29444,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [870] = 30, - ACTIONS(791), 1, + [872] = 30, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(879), 1, - anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(863), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(897), 1, - anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(899), 1, + anon_sym_COMMA, + ACTIONS(901), 1, + anon_sym_RBRACE, + STATE(904), 1, sym_primary_expression, - STATE(996), 1, + STATE(982), 1, sym_string, - STATE(1378), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1712), 1, + STATE(1671), 1, sym_expression, - STATE(2382), 1, - sym_pattern, - STATE(2611), 1, + STATE(1835), 1, + sym_pair, + STATE(2262), 1, + sym_dictionary_splat, + STATE(2605), 1, sym__named_expression_lhs, STATE(2737), 1, - sym__patterns, - STATE(2792), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, - sym_attribute, - sym_subscript, - STATE(2570), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2275), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29522,9 +29521,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -29537,12 +29538,12 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [994] = 30, - ACTIONS(741), 1, + [996] = 30, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(729), 1, sym_string_start, ACTIONS(843), 1, sym_identifier, @@ -29560,36 +29561,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(865), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(903), 1, anon_sym_COMMA, - ACTIONS(901), 1, + ACTIONS(905), 1, anon_sym_RBRACE, - STATE(912), 1, + STATE(904), 1, sym_primary_expression, - STATE(971), 1, + STATE(982), 1, sym_string, - STATE(1203), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1670), 1, + STATE(1664), 1, sym_expression, - STATE(1866), 1, + STATE(1836), 1, sym_pair, - STATE(2267), 1, + STATE(2446), 1, sym_dictionary_splat, - STATE(2683), 1, + STATE(2605), 1, sym__named_expression_lhs, - STATE(2710), 1, + STATE(2652), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -29597,16 +29598,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, + STATE(2275), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(709), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1768), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1171), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [1120] = 32, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(873), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_LPAREN, + ACTIONS(879), 1, + anon_sym_STAR, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(893), 1, + anon_sym_await, + ACTIONS(907), 1, + anon_sym_RPAREN, + STATE(965), 1, + sym_primary_expression, + STATE(1003), 1, + sym_string, + STATE(1378), 1, + sym_list_splat_pattern, + STATE(1700), 1, + sym_expression, + STATE(2250), 1, + sym_pattern, + STATE(2291), 1, sym_list_splat, + STATE(2304), 1, sym_parenthesized_list_splat, + STATE(2460), 1, sym_yield, + STATE(2614), 1, + sym__named_expression_lhs, + STATE(2629), 1, + sym__patterns, + STATE(2686), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(749), 2, + sym_ellipsis, + sym_float, + ACTIONS(883), 2, + anon_sym_match, + anon_sym_type, + STATE(1377), 2, + sym_attribute, + sym_subscript, + STATE(2596), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(745), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(881), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29614,11 +29713,103 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1381), 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, + [1248] = 30, + ACTIONS(813), 1, + anon_sym_LBRACE, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(821), 1, + sym_identifier, + ACTIONS(823), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + anon_sym_STAR, + ACTIONS(831), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + anon_sym_not, + ACTIONS(837), 1, + anon_sym_lambda, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(841), 1, + anon_sym_await, + ACTIONS(909), 1, + anon_sym_RBRACK, + STATE(964), 1, + sym_primary_expression, + STATE(1022), 1, + sym_string, + STATE(1409), 1, + sym_list_splat_pattern, + STATE(1716), 1, + sym_expression, + STATE(2410), 1, + sym_pattern, + STATE(2690), 1, + sym__named_expression_lhs, + STATE(2741), 1, + sym__patterns, + STATE(2790), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(815), 2, + sym_ellipsis, + sym_float, + ACTIONS(829), 2, + anon_sym_match, + anon_sym_type, + STATE(1411), 2, sym_attribute, sym_subscript, + STATE(2532), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(811), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(827), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2391), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(799), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1776), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1404), 14, + sym_binary_operator, + sym_unary_operator, sym_call, sym_list, sym_set, @@ -29631,7 +29822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1118] = 28, + [1372] = 28, ACTIONS(9), 1, sym_identifier, ACTIONS(15), 1, @@ -29652,19 +29843,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym_string_start, - STATE(641), 1, + STATE(632), 1, sym_list_splat_pattern, - STATE(966), 1, - sym_primary_expression, - STATE(969), 1, + STATE(967), 1, sym_string, - STATE(1630), 1, - sym_pattern_list, - STATE(1632), 1, + STATE(970), 1, + sym_primary_expression, + STATE(1635), 1, sym_pattern, - STATE(1778), 1, + STATE(1637), 1, + sym_pattern_list, + STATE(1827), 1, sym_expression, - STATE(2751), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -29675,10 +29866,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(413), 2, anon_sym_match, anon_sym_type, - STATE(640), 2, + STATE(641), 2, sym_attribute, sym_subscript, - STATE(1640), 2, + STATE(1644), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(65), 3, @@ -29694,13 +29885,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2586), 5, + STATE(2557), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(1666), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29708,7 +29899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 14, + STATE(1130), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29723,7 +29914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1238] = 28, + [1492] = 28, ACTIONS(9), 1, sym_identifier, ACTIONS(15), 1, @@ -29744,19 +29935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym_string_start, - STATE(641), 1, + STATE(632), 1, sym_list_splat_pattern, - STATE(966), 1, - sym_primary_expression, - STATE(969), 1, + STATE(967), 1, sym_string, - STATE(1630), 1, - sym_pattern_list, - STATE(1632), 1, + STATE(970), 1, + sym_primary_expression, + STATE(1635), 1, sym_pattern, - STATE(1778), 1, + STATE(1637), 1, + sym_pattern_list, + STATE(1827), 1, sym_expression, - STATE(2751), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -29767,10 +29958,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(413), 2, anon_sym_match, anon_sym_type, - STATE(640), 2, + STATE(641), 2, sym_attribute, sym_subscript, - STATE(1640), 2, + STATE(1644), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(65), 3, @@ -29786,13 +29977,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2553), 5, + STATE(2515), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(1666), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29800,7 +29991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 14, + STATE(1130), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29815,79 +30006,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1358] = 31, - ACTIONS(769), 1, + [1612] = 31, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(873), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(875), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(833), 1, + ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(903), 1, + ACTIONS(911), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(965), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1003), 1, sym_string, - STATE(1369), 1, + STATE(1378), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1685), 1, sym_expression, - STATE(2340), 1, + STATE(2250), 1, sym_pattern, - STATE(2353), 1, + STATE(2282), 1, sym_yield, - STATE(2625), 1, + STATE(2614), 1, + sym__named_expression_lhs, + STATE(2629), 1, sym__patterns, - STATE(2647), 1, + STATE(2720), 1, sym__collection_elements, - STATE(2771), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, + STATE(1377), 2, sym_attribute, sym_subscript, - STATE(2345), 2, + STATE(2247), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2573), 2, + STATE(2596), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29895,7 +30086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1381), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29910,79 +30101,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1484] = 31, - ACTIONS(769), 1, + [1738] = 30, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(833), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(863), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(905), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(913), 1, + anon_sym_COMMA, + ACTIONS(915), 1, + anon_sym_RBRACE, + STATE(904), 1, sym_primary_expression, - STATE(1015), 1, + STATE(982), 1, sym_string, - STATE(1369), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1658), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2340), 1, - sym_pattern, - STATE(2606), 1, - sym__patterns, - STATE(2613), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(1858), 1, + sym_pair, + STATE(2497), 1, + sym_dictionary_splat, + STATE(2605), 1, sym__named_expression_lhs, + STATE(2793), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, - sym_attribute, - sym_subscript, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2573), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2275), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29990,9 +30178,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -30005,78 +30195,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1610] = 30, - ACTIONS(791), 1, + [1862] = 30, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(821), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(831), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(839), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(841), 1, anon_sym_await, - ACTIONS(907), 1, + ACTIONS(917), 1, anon_sym_RBRACK, - STATE(965), 1, + STATE(964), 1, sym_primary_expression, - STATE(996), 1, + STATE(1022), 1, sym_string, - STATE(1378), 1, + STATE(1409), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1705), 1, sym_expression, - STATE(2382), 1, + STATE(2410), 1, sym_pattern, - STATE(2611), 1, + STATE(2690), 1, sym__named_expression_lhs, - STATE(2628), 1, + STATE(2740), 1, sym__collection_elements, - STATE(2648), 1, + STATE(2741), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(829), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1411), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2532), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(827), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2391), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30084,7 +30274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1404), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30099,18 +30289,18 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1734] = 31, - ACTIONS(769), 1, + [1986] = 30, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(821), 1, sym_identifier, ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(833), 1, + ACTIONS(831), 1, anon_sym_LBRACK, ACTIONS(835), 1, anon_sym_not, @@ -30120,58 +30310,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(841), 1, anon_sym_await, - ACTIONS(909), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(919), 1, + anon_sym_RBRACK, + STATE(964), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1022), 1, sym_string, - STATE(1369), 1, + STATE(1409), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1705), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2340), 1, + STATE(2410), 1, sym_pattern, - STATE(2613), 1, + STATE(2690), 1, + sym__named_expression_lhs, + STATE(2740), 1, sym__collection_elements, - STATE(2625), 1, + STATE(2741), 1, sym__patterns, - STATE(2771), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(829), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, + STATE(1411), 2, sym_attribute, sym_subscript, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2573), 2, + STATE(2532), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(827), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2391), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30179,7 +30368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1404), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30194,78 +30383,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1860] = 30, - ACTIONS(791), 1, + [2110] = 30, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(821), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(831), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(839), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(841), 1, anon_sym_await, - ACTIONS(911), 1, + ACTIONS(921), 1, anon_sym_RBRACK, - STATE(965), 1, + STATE(964), 1, sym_primary_expression, - STATE(996), 1, + STATE(1022), 1, sym_string, - STATE(1378), 1, + STATE(1409), 1, sym_list_splat_pattern, - STATE(1705), 1, + STATE(1716), 1, sym_expression, - STATE(2382), 1, + STATE(2410), 1, sym_pattern, - STATE(2611), 1, - sym__named_expression_lhs, - STATE(2648), 1, + STATE(2678), 1, sym__patterns, - STATE(2664), 1, + STATE(2690), 1, + sym__named_expression_lhs, + STATE(2790), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(829), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1411), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2532), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(827), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2391), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30273,7 +30462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1404), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30288,79 +30477,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1984] = 31, - ACTIONS(769), 1, + [2234] = 31, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(873), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(875), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(833), 1, + ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(913), 1, + ACTIONS(923), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(965), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1003), 1, sym_string, - STATE(1369), 1, + STATE(1378), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1685), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2340), 1, + STATE(2250), 1, sym_pattern, - STATE(2613), 1, + STATE(2282), 1, + sym_yield, + STATE(2614), 1, + sym__named_expression_lhs, + STATE(2720), 1, sym__collection_elements, - STATE(2623), 1, + STATE(2762), 1, sym__patterns, - STATE(2771), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, + STATE(1377), 2, sym_attribute, sym_subscript, - STATE(2345), 2, + STATE(2247), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2573), 2, + STATE(2596), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30368,7 +30557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1381), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30383,78 +30572,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2110] = 30, - ACTIONS(791), 1, + [2360] = 30, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(821), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(831), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(839), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(841), 1, anon_sym_await, - ACTIONS(915), 1, + ACTIONS(925), 1, anon_sym_RBRACK, - STATE(965), 1, + STATE(964), 1, sym_primary_expression, - STATE(996), 1, + STATE(1022), 1, sym_string, - STATE(1378), 1, + STATE(1409), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1715), 1, sym_expression, - STATE(2382), 1, + STATE(2410), 1, sym_pattern, - STATE(2611), 1, - sym__named_expression_lhs, - STATE(2628), 1, + STATE(2640), 1, sym__collection_elements, - STATE(2737), 1, + STATE(2690), 1, + sym__named_expression_lhs, + STATE(2763), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(829), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1411), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2532), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(827), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2391), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30462,7 +30651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1404), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30477,76 +30666,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2234] = 30, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [2484] = 30, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(821), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(859), 1, + ACTIONS(831), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(863), 1, + ACTIONS(839), 1, anon_sym_yield, - ACTIONS(865), 1, + ACTIONS(841), 1, anon_sym_await, - ACTIONS(917), 1, - anon_sym_COMMA, - ACTIONS(919), 1, - anon_sym_RBRACE, - STATE(912), 1, + ACTIONS(927), 1, + anon_sym_RBRACK, + STATE(964), 1, sym_primary_expression, - STATE(971), 1, + STATE(1022), 1, sym_string, - STATE(1203), 1, + STATE(1409), 1, sym_list_splat_pattern, - STATE(1656), 1, + STATE(1716), 1, sym_expression, - STATE(1862), 1, - sym_pair, - STATE(2347), 1, - sym_dictionary_splat, - STATE(2668), 1, - sym__collection_elements, - STATE(2683), 1, + STATE(2410), 1, + sym_pattern, + STATE(2690), 1, sym__named_expression_lhs, + STATE(2763), 1, + sym__patterns, + STATE(2790), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(829), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + STATE(1411), 2, + sym_attribute, + sym_subscript, + STATE(2532), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(827), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, + STATE(2391), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(731), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30554,11 +30745,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1404), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30571,76 +30760,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2358] = 30, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [2608] = 31, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(873), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(875), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(859), 1, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(863), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(865), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(921), 1, - anon_sym_COMMA, - ACTIONS(923), 1, - anon_sym_RBRACE, - STATE(912), 1, + ACTIONS(929), 1, + anon_sym_RPAREN, + STATE(965), 1, sym_primary_expression, - STATE(971), 1, + STATE(1003), 1, sym_string, - STATE(1203), 1, + STATE(1378), 1, sym_list_splat_pattern, - STATE(1667), 1, + STATE(1692), 1, sym_expression, - STATE(1855), 1, - sym_pair, - STATE(2289), 1, - sym_dictionary_splat, - STATE(2683), 1, + STATE(2250), 1, + sym_pattern, + STATE(2494), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, - STATE(2746), 1, + STATE(2762), 1, + sym__patterns, + STATE(2774), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + STATE(1377), 2, + sym_attribute, + sym_subscript, + STATE(2247), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2596), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30648,11 +30840,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1381), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30665,80 +30855,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2482] = 32, - ACTIONS(769), 1, + [2734] = 30, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(833), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(863), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(925), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(931), 1, + anon_sym_COMMA, + ACTIONS(933), 1, + anon_sym_RBRACE, + STATE(904), 1, sym_primary_expression, - STATE(1015), 1, + STATE(982), 1, sym_string, - STATE(1369), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1680), 1, + STATE(1663), 1, sym_expression, - STATE(2340), 1, - sym_pattern, - STATE(2379), 1, - sym_list_splat, - STATE(2381), 1, - sym_parenthesized_list_splat, - STATE(2443), 1, - sym_yield, - STATE(2606), 1, - sym__patterns, - STATE(2631), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(1883), 1, + sym_pair, + STATE(2284), 1, + sym_dictionary_splat, + STATE(2605), 1, sym__named_expression_lhs, + STATE(2732), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, - sym_attribute, - sym_subscript, - STATE(2573), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2275), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30746,9 +30932,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -30761,80 +30949,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2610] = 32, - ACTIONS(769), 1, + [2858] = 32, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(873), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(875), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(833), 1, + ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(927), 1, + ACTIONS(935), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(965), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1003), 1, sym_string, - STATE(1369), 1, + STATE(1378), 1, sym_list_splat_pattern, - STATE(1688), 1, + STATE(1703), 1, sym_expression, - STATE(2242), 1, - sym_yield, - STATE(2340), 1, + STATE(2250), 1, sym_pattern, - STATE(2434), 1, + STATE(2340), 1, + sym_yield, + STATE(2418), 1, sym_list_splat, - STATE(2435), 1, + STATE(2492), 1, sym_parenthesized_list_splat, - STATE(2602), 1, - sym__patterns, - STATE(2736), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2614), 1, sym__named_expression_lhs, + STATE(2682), 1, + sym__collection_elements, + STATE(2713), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, + STATE(1377), 2, sym_attribute, sym_subscript, - STATE(2573), 2, + STATE(2596), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30842,7 +31030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1381), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30857,18 +31045,18 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2738] = 31, - ACTIONS(769), 1, + [2986] = 30, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(821), 1, sym_identifier, ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(833), 1, + ACTIONS(831), 1, anon_sym_LBRACK, ACTIONS(835), 1, anon_sym_not, @@ -30878,58 +31066,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(841), 1, anon_sym_await, - ACTIONS(929), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(937), 1, + anon_sym_RBRACK, + STATE(964), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1022), 1, sym_string, - STATE(1369), 1, + STATE(1409), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1716), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2340), 1, + STATE(2410), 1, sym_pattern, - STATE(2613), 1, - sym__collection_elements, - STATE(2692), 1, + STATE(2637), 1, sym__patterns, - STATE(2771), 1, + STATE(2690), 1, sym__named_expression_lhs, + STATE(2790), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(829), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, + STATE(1411), 2, sym_attribute, sym_subscript, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2573), 2, + STATE(2532), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(827), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2391), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30937,7 +31124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1404), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30952,78 +31139,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2864] = 30, - ACTIONS(791), 1, + [3110] = 31, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(873), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(875), 1, anon_sym_LPAREN, - ACTIONS(873), 1, - anon_sym_STAR, ACTIONS(879), 1, + anon_sym_STAR, + ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(931), 1, - anon_sym_RBRACK, + ACTIONS(939), 1, + anon_sym_RPAREN, STATE(965), 1, sym_primary_expression, - STATE(996), 1, + STATE(1003), 1, sym_string, STATE(1378), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1685), 1, sym_expression, - STATE(2382), 1, + STATE(2250), 1, sym_pattern, - STATE(2611), 1, - sym__named_expression_lhs, - STATE(2626), 1, + STATE(2282), 1, + sym_yield, + STATE(2603), 1, sym__patterns, - STATE(2628), 1, + STATE(2614), 1, + sym__named_expression_lhs, + STATE(2720), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1377), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2247), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2596), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31031,7 +31219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1381), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31046,12 +31234,12 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2988] = 30, - ACTIONS(741), 1, + [3236] = 30, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(729), 1, sym_string_start, ACTIONS(843), 1, sym_identifier, @@ -31069,36 +31257,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(865), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(941), 1, anon_sym_COMMA, - ACTIONS(935), 1, + ACTIONS(943), 1, anon_sym_RBRACE, - STATE(912), 1, + STATE(904), 1, sym_primary_expression, - STATE(971), 1, + STATE(982), 1, sym_string, - STATE(1203), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1655), 1, + STATE(1656), 1, sym_expression, - STATE(1836), 1, + STATE(1870), 1, sym_pair, - STATE(2380), 1, + STATE(2350), 1, sym_dictionary_splat, - STATE(2608), 1, - sym__collection_elements, - STATE(2683), 1, + STATE(2605), 1, sym__named_expression_lhs, + STATE(2661), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -31106,16 +31294,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, + STATE(2275), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(731), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31123,7 +31311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31140,12 +31328,12 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3112] = 30, - ACTIONS(741), 1, + [3360] = 30, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(729), 1, sym_string_start, ACTIONS(843), 1, sym_identifier, @@ -31163,36 +31351,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(865), 1, anon_sym_await, - ACTIONS(937), 1, + ACTIONS(945), 1, anon_sym_COMMA, - ACTIONS(939), 1, + ACTIONS(947), 1, anon_sym_RBRACE, - STATE(912), 1, + STATE(904), 1, sym_primary_expression, - STATE(971), 1, + STATE(982), 1, sym_string, - STATE(1203), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1663), 1, + STATE(1666), 1, sym_expression, - STATE(1859), 1, + STATE(1854), 1, sym_pair, - STATE(2279), 1, + STATE(2405), 1, sym_dictionary_splat, - STATE(2683), 1, + STATE(2605), 1, sym__named_expression_lhs, - STATE(2757), 1, + STATE(2618), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -31200,16 +31388,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, + STATE(2275), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(731), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31217,7 +31405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31234,172 +31422,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3236] = 30, - ACTIONS(791), 1, + [3484] = 31, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(873), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(875), 1, anon_sym_LPAREN, - ACTIONS(873), 1, - anon_sym_STAR, ACTIONS(879), 1, + anon_sym_STAR, + ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(941), 1, - anon_sym_RBRACK, + ACTIONS(949), 1, + anon_sym_RPAREN, STATE(965), 1, sym_primary_expression, - STATE(996), 1, + STATE(1003), 1, sym_string, STATE(1378), 1, sym_list_splat_pattern, - STATE(1713), 1, + STATE(1685), 1, sym_expression, - STATE(2382), 1, + STATE(2250), 1, sym_pattern, - STATE(2611), 1, + STATE(2282), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, - STATE(2737), 1, + STATE(2713), 1, sym__patterns, - STATE(2743), 1, + STATE(2720), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1377), 2, sym_attribute, sym_subscript, - STATE(2570), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(789), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(875), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - STATE(2378), 3, + STATE(2247), 2, sym_list_splat, sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1793), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1365), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [3360] = 30, - ACTIONS(791), 1, - anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(869), 1, - sym_identifier, - ACTIONS(871), 1, - anon_sym_LPAREN, - ACTIONS(873), 1, - anon_sym_STAR, - ACTIONS(879), 1, - anon_sym_LBRACK, - ACTIONS(883), 1, - anon_sym_not, - ACTIONS(885), 1, - anon_sym_lambda, - ACTIONS(887), 1, - anon_sym_yield, - ACTIONS(889), 1, - anon_sym_await, - ACTIONS(943), 1, - anon_sym_RBRACK, - STATE(965), 1, - sym_primary_expression, - STATE(996), 1, - sym_string, - STATE(1378), 1, - sym_list_splat_pattern, - STATE(1707), 1, - sym_expression, - STATE(2382), 1, - sym_pattern, - STATE(2611), 1, - sym__named_expression_lhs, - STATE(2628), 1, - sym__collection_elements, - STATE(2737), 1, - sym__patterns, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(793), 2, - sym_ellipsis, - sym_float, - ACTIONS(877), 2, - anon_sym_match, - anon_sym_type, - STATE(1381), 2, - sym_attribute, - sym_subscript, - STATE(2570), 2, + STATE(2596), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31407,7 +31502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1381), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31422,18 +31517,18 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3484] = 31, - ACTIONS(769), 1, + [3610] = 30, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(821), 1, sym_identifier, ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(833), 1, + ACTIONS(831), 1, anon_sym_LBRACK, ACTIONS(835), 1, anon_sym_not, @@ -31443,58 +31538,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(841), 1, anon_sym_await, - ACTIONS(945), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(951), 1, + anon_sym_RBRACK, + STATE(964), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1022), 1, sym_string, - STATE(1369), 1, + STATE(1409), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1716), 1, sym_expression, - STATE(2340), 1, + STATE(2410), 1, sym_pattern, - STATE(2353), 1, - sym_yield, - STATE(2625), 1, + STATE(2654), 1, sym__patterns, - STATE(2647), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2690), 1, sym__named_expression_lhs, + STATE(2790), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(829), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, + STATE(1411), 2, sym_attribute, sym_subscript, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2573), 2, + STATE(2532), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(827), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2391), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31502,7 +31596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1404), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31517,78 +31611,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3610] = 30, - ACTIONS(791), 1, + [3734] = 31, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(873), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(875), 1, anon_sym_LPAREN, - ACTIONS(873), 1, - anon_sym_STAR, ACTIONS(879), 1, + anon_sym_STAR, + ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(947), 1, - anon_sym_RBRACK, + ACTIONS(953), 1, + anon_sym_RPAREN, STATE(965), 1, sym_primary_expression, - STATE(996), 1, + STATE(1003), 1, sym_string, STATE(1378), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1704), 1, sym_expression, - STATE(2382), 1, + STATE(2250), 1, sym_pattern, - STATE(2611), 1, + STATE(2251), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, - STATE(2628), 1, + STATE(2757), 1, sym__collection_elements, - STATE(2649), 1, + STATE(2762), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1377), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2247), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2596), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31596,7 +31691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1381), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31611,78 +31706,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3734] = 30, - ACTIONS(791), 1, + [3860] = 31, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(873), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(875), 1, anon_sym_LPAREN, - ACTIONS(873), 1, - anon_sym_STAR, ACTIONS(879), 1, + anon_sym_STAR, + ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(949), 1, - anon_sym_RBRACK, + ACTIONS(955), 1, + anon_sym_RPAREN, STATE(965), 1, sym_primary_expression, - STATE(996), 1, + STATE(1003), 1, sym_string, STATE(1378), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1704), 1, sym_expression, - STATE(2382), 1, + STATE(2250), 1, sym_pattern, - STATE(2611), 1, + STATE(2251), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, - STATE(2628), 1, + STATE(2757), 1, sym__collection_elements, - STATE(2703), 1, + STATE(2762), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1377), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2247), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2596), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31690,7 +31786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1381), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31705,170 +31801,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3858] = 30, - ACTIONS(791), 1, - anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(869), 1, + [3986] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(79), 1, anon_sym_await, - ACTIONS(951), 1, - anon_sym_RBRACK, - STATE(965), 1, - sym_primary_expression, - STATE(996), 1, - sym_string, - STATE(1378), 1, + ACTIONS(81), 1, + sym_string_start, + STATE(632), 1, sym_list_splat_pattern, - STATE(1713), 1, - sym_expression, - STATE(2382), 1, + STATE(967), 1, + sym_string, + STATE(970), 1, + sym_primary_expression, + STATE(1635), 1, sym_pattern, - STATE(2611), 1, + STATE(1637), 1, + sym_pattern_list, + STATE(1827), 1, + sym_expression, + STATE(2775), 1, sym__named_expression_lhs, - STATE(2737), 1, - sym__patterns, - STATE(2743), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(413), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(641), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(1644), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(415), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1365), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [3982] = 30, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, - anon_sym_LBRACE, - ACTIONS(751), 1, - sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(845), 1, - anon_sym_LPAREN, - ACTIONS(849), 1, - anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(859), 1, - anon_sym_not, - ACTIONS(861), 1, - anon_sym_lambda, - ACTIONS(863), 1, - anon_sym_yield, - ACTIONS(865), 1, - anon_sym_await, - ACTIONS(953), 1, - anon_sym_COMMA, - ACTIONS(955), 1, - anon_sym_RBRACE, - STATE(912), 1, - sym_primary_expression, - STATE(971), 1, - sym_string, - STATE(1203), 1, - sym_list_splat_pattern, - STATE(1671), 1, - sym_expression, - STATE(1845), 1, - sym_pair, - STATE(2307), 1, - sym_dictionary_splat, - STATE(2643), 1, - sym__collection_elements, - STATE(2683), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(747), 2, - sym_ellipsis, - sym_float, - ACTIONS(853), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(743), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(851), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - STATE(2357), 3, - sym_list_splat, - sym_parenthesized_list_splat, + STATE(2558), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, sym_yield, - ACTIONS(731), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1771), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31876,11 +31878,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1130), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -31894,11 +31894,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4106] = 22, - ACTIONS(310), 1, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(312), 1, anon_sym_TILDE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(957), 1, sym_identifier, @@ -31910,18 +31910,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(971), 1, anon_sym_await, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1352), 1, + STATE(1306), 1, sym_list_splat_pattern, - STATE(1591), 1, - sym_primary_expression, - STATE(1610), 1, + STATE(1618), 1, sym_pattern, + STATE(1621), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(680), 2, @@ -31930,22 +31930,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(967), 2, anon_sym_match, anon_sym_type, - STATE(1353), 2, + STATE(1305), 2, sym_attribute, sym_subscript, - STATE(1592), 2, + STATE(1602), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(965), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31979,11 +31979,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4213] = 22, - ACTIONS(310), 1, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(312), 1, anon_sym_TILDE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(957), 1, sym_identifier, @@ -31995,18 +31995,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(971), 1, anon_sym_await, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1352), 1, + STATE(1306), 1, sym_list_splat_pattern, - STATE(1591), 1, - sym_primary_expression, - STATE(1610), 1, + STATE(1618), 1, sym_pattern, + STATE(1621), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(680), 2, @@ -32015,22 +32015,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(967), 2, anon_sym_match, anon_sym_type, - STATE(1353), 2, + STATE(1305), 2, sym_attribute, sym_subscript, - STATE(1592), 2, + STATE(1602), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(965), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32064,13 +32064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4320] = 26, - ACTIONS(801), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -32086,28 +32086,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1757), 1, sym_expression, - STATE(2012), 1, + STATE(2092), 1, sym_type, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -32115,18 +32115,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(2011), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32134,7 +32134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32152,13 +32152,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4434] = 26, - ACTIONS(801), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -32174,28 +32174,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(993), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1757), 1, sym_expression, - STATE(2012), 1, + STATE(2092), 1, sym_type, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -32203,18 +32203,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(2011), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32222,7 +32222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32240,13 +32240,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4548] = 26, - ACTIONS(801), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -32262,28 +32262,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(995), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1757), 1, sym_expression, - STATE(2012), 1, + STATE(2092), 1, sym_type, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -32291,18 +32291,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(2011), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32310,7 +32310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32328,13 +32328,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4662] = 26, - ACTIONS(801), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -32350,28 +32350,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(997), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1757), 1, sym_expression, - STATE(2012), 1, + STATE(2092), 1, sym_type, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -32379,18 +32379,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(2011), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32398,7 +32398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32415,70 +32415,73 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4776] = 26, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [4776] = 27, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(863), 1, + anon_sym_yield, + ACTIONS(999), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(1001), 1, + anon_sym_LPAREN, + ACTIONS(1003), 1, anon_sym_STAR, - ACTIONS(983), 1, - anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(1009), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1013), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1015), 1, anon_sym_await, - ACTIONS(999), 1, - anon_sym_RBRACK, - STATE(976), 1, + STATE(946), 1, sym_primary_expression, - STATE(1107), 1, + STATE(981), 1, sym_string, - STATE(1437), 1, + STATE(1173), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1731), 1, sym_expression, - STATE(2012), 1, - sym_type, - STATE(2777), 1, + STATE(2533), 1, + sym_pattern, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1007), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + STATE(1179), 2, + sym_attribute, + sym_subscript, + STATE(1644), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1005), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1751), 7, + STATE(2061), 4, + sym_expression_list, + sym_pattern_list, + sym_yield, + sym__f_expression, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32486,11 +32489,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1208), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -32503,14 +32504,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4890] = 26, - ACTIONS(801), 1, + [4892] = 26, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -32524,30 +32525,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1001), 1, + ACTIONS(1017), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1757), 1, sym_expression, - STATE(2012), 1, + STATE(2092), 1, sym_type, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -32555,18 +32556,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(2011), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32574,7 +32575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32591,72 +32592,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5004] = 27, - ACTIONS(698), 1, + [5006] = 26, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_yield, - ACTIONS(1003), 1, + ACTIONS(975), 1, sym_identifier, - ACTIONS(1005), 1, - anon_sym_LPAREN, - ACTIONS(1007), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(1013), 1, - anon_sym_LBRACK, - ACTIONS(1015), 1, + ACTIONS(983), 1, + anon_sym_STAR_STAR, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1019), 1, + ACTIONS(991), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1019), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(975), 1, + STATE(1069), 1, sym_string, - STATE(1139), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1757), 1, sym_expression, - STATE(2500), 1, - sym_pattern, - STATE(2773), 1, + STATE(2092), 1, + sym_type, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1011), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - STATE(1140), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(696), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1009), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2009), 4, - sym_expression_list, - sym_pattern_list, - sym_yield, - sym__f_expression, + STATE(2011), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, STATE(1767), 7, sym_named_expression, sym_as_pattern, @@ -32665,9 +32663,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 14, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -32681,13 +32681,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5120] = 26, - ACTIONS(801), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -32703,28 +32703,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(1021), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1757), 1, sym_expression, - STATE(2012), 1, + STATE(2092), 1, sym_type, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -32732,18 +32732,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(2011), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32751,7 +32751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32769,13 +32769,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5234] = 26, - ACTIONS(801), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -32791,28 +32791,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(1023), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1757), 1, sym_expression, - STATE(2012), 1, + STATE(2092), 1, sym_type, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -32820,18 +32820,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(2011), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32839,7 +32839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32863,31 +32863,31 @@ static const uint16_t ts_small_parse_table[] = { sym_string_start, ACTIONS(863), 1, anon_sym_yield, - ACTIONS(1003), 1, + ACTIONS(999), 1, sym_identifier, - ACTIONS(1005), 1, + ACTIONS(1001), 1, anon_sym_LPAREN, - ACTIONS(1007), 1, + ACTIONS(1003), 1, anon_sym_STAR, - ACTIONS(1013), 1, + ACTIONS(1009), 1, anon_sym_LBRACK, - ACTIONS(1015), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1013), 1, anon_sym_lambda, - ACTIONS(1019), 1, + ACTIONS(1015), 1, anon_sym_await, - STATE(909), 1, + STATE(946), 1, sym_primary_expression, - STATE(975), 1, + STATE(981), 1, sym_string, - STATE(1139), 1, + STATE(1173), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1731), 1, sym_expression, - STATE(2500), 1, + STATE(2533), 1, sym_pattern, - STATE(2773), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -32895,20 +32895,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1011), 2, + ACTIONS(1007), 2, anon_sym_match, anon_sym_type, - STATE(1140), 2, + STATE(1179), 2, sym_attribute, sym_subscript, - STATE(1640), 2, + STATE(1644), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1009), 3, + ACTIONS(1005), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -32917,12 +32917,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1997), 4, + STATE(2066), 4, sym_expression_list, sym_pattern_list, sym_yield, sym__f_expression, - STATE(1767), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32930,7 +32930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 14, + STATE(1208), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32945,70 +32945,156 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5464] = 27, - ACTIONS(719), 1, + [5464] = 25, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(1025), 1, sym_identifier, ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1029), 1, - anon_sym_RPAREN, - ACTIONS(1031), 1, - anon_sym_COMMA, - ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1039), 1, + ACTIONS(1033), 1, anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1037), 1, anon_sym_lambda, + ACTIONS(1039), 1, + anon_sym_await, + STATE(963), 1, + sym_primary_expression, + STATE(1025), 1, + sym_string, + STATE(1413), 1, + sym_list_splat_pattern, + STATE(1737), 1, + sym_expression, + STATE(1955), 1, + sym_type, + STATE(2691), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(771), 2, + sym_ellipsis, + sym_float, + ACTIONS(1031), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1029), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1954), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1723), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1380), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [5575] = 27, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(1041), 1, + sym_identifier, + ACTIONS(1043), 1, + anon_sym_LPAREN, ACTIONS(1045), 1, + anon_sym_RPAREN, + ACTIONS(1047), 1, + anon_sym_COMMA, + ACTIONS(1049), 1, + anon_sym_STAR, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1057), 1, anon_sym_await, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1003), 1, sym_string, - STATE(1388), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1699), 1, sym_expression, - STATE(2325), 1, + STATE(2397), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1053), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1051), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2323), 3, + STATE(2394), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33016,7 +33102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33033,14 +33119,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5579] = 25, - ACTIONS(801), 1, + [5690] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -33054,28 +33140,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1757), 1, sym_expression, - STATE(2012), 1, + STATE(1946), 1, sym_type, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -33083,18 +33169,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(2011), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33102,7 +33188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33119,68 +33205,154 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5690] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(310), 1, + [5801] = 25, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(975), 1, + sym_identifier, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(983), 1, + anon_sym_STAR_STAR, + ACTIONS(987), 1, + anon_sym_not, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(327), 1, + STATE(979), 1, + sym_primary_expression, + STATE(1069), 1, + sym_string, + STATE(1447), 1, + sym_list_splat_pattern, + STATE(1757), 1, + sym_expression, + STATE(1999), 1, + sym_type, + STATE(2611), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(793), 2, + sym_ellipsis, + sym_float, + ACTIONS(981), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(789), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(979), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(777), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(2011), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1767), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1448), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [5912] = 25, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1059), 1, + sym_identifier, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(970), 1, + ACTIONS(1063), 1, + anon_sym_STAR_STAR, + STATE(860), 1, sym_primary_expression, - STATE(1010), 1, + STATE(967), 1, sym_string, - STATE(1342), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1726), 1, sym_expression, - STATE(2449), 1, + STATE(1897), 1, sym_type, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, + STATE(1899), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1717), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33188,7 +33360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33205,16 +33377,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5801] = 25, + [6023] = 25, ACTIONS(275), 1, sym_identifier, - ACTIONS(310), 1, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(341), 1, anon_sym_STAR_STAR, @@ -33222,40 +33394,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1752), 1, sym_expression, - STATE(2484), 1, + STATE(2294), 1, sym_type, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, @@ -33266,7 +33438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_constrained_type, sym_member_type, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33274,7 +33446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33291,71 +33463,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5912] = 28, - ACTIONS(765), 1, + [6134] = 25, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(975), 1, + sym_identifier, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(983), 1, + anon_sym_STAR_STAR, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1053), 1, - anon_sym_LPAREN, - ACTIONS(1055), 1, - anon_sym_RPAREN, - ACTIONS(1061), 1, + ACTIONS(991), 1, anon_sym_await, - STATE(963), 1, + STATE(979), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1069), 1, sym_string, - STATE(1258), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1694), 1, + STATE(1757), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2423), 1, - sym_with_item, - STATE(2613), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(1997), 1, + sym_type, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(767), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(2011), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33363,7 +33532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33380,68 +33549,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6029] = 25, - ACTIONS(801), 1, + [6245] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(1027), 1, anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(1033), 1, anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1039), 1, anon_sym_await, - STATE(976), 1, + STATE(963), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1025), 1, sym_string, - STATE(1437), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1737), 1, sym_expression, - STATE(1922), 1, + STATE(1986), 1, sym_type, - STATE(2777), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(1954), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33449,7 +33618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33466,16 +33635,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6140] = 25, + [6356] = 25, ACTIONS(275), 1, sym_identifier, - ACTIONS(310), 1, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(341), 1, anon_sym_STAR_STAR, @@ -33483,40 +33652,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1752), 1, sym_expression, - STATE(2085), 1, + STATE(2302), 1, sym_type, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, @@ -33527,7 +33696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_constrained_type, sym_member_type, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33535,7 +33704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33552,68 +33721,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6251] = 25, - ACTIONS(67), 1, + [6467] = 27, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1063), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(1065), 1, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1049), 1, anon_sym_STAR, - ACTIONS(1067), 1, + ACTIONS(1055), 1, anon_sym_STAR_STAR, - STATE(865), 1, + ACTIONS(1057), 1, + anon_sym_await, + ACTIONS(1069), 1, + anon_sym_RPAREN, + ACTIONS(1071), 1, + anon_sym_COMMA, + STATE(965), 1, sym_primary_expression, - STATE(969), 1, + STATE(1003), 1, sym_string, - STATE(1119), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1672), 1, sym_expression, - STATE(1994), 1, - sym_type, - STATE(2751), 1, + STATE(2434), 1, + sym_parenthesized_list_splat, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1053), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1051), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2437), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1894), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1666), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33621,7 +33792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33638,68 +33809,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6362] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(310), 1, + [6582] = 27, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(1041), 1, + sym_identifier, + ACTIONS(1043), 1, anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, - anon_sym_STAR, ACTIONS(1049), 1, - anon_sym_not, - STATE(970), 1, + anon_sym_STAR, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1057), 1, + anon_sym_await, + ACTIONS(1073), 1, + anon_sym_RPAREN, + ACTIONS(1075), 1, + anon_sym_COMMA, + STATE(965), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1003), 1, sym_string, - STATE(1342), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1681), 1, sym_expression, - STATE(2262), 1, - sym_type, - STATE(2775), 1, + STATE(2370), 1, + sym_parenthesized_list_splat, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1053), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1051), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2369), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1717), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33707,7 +33880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33724,68 +33897,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6473] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(310), 1, + [6697] = 27, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(1041), 1, + sym_identifier, + ACTIONS(1043), 1, anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, - anon_sym_STAR, ACTIONS(1049), 1, - anon_sym_not, - STATE(970), 1, + anon_sym_STAR, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1057), 1, + anon_sym_await, + ACTIONS(1077), 1, + anon_sym_RPAREN, + ACTIONS(1079), 1, + anon_sym_COMMA, + STATE(965), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1003), 1, sym_string, - STATE(1342), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1686), 1, sym_expression, - STATE(1995), 1, - sym_type, - STATE(2775), 1, + STATE(2266), 1, + sym_parenthesized_list_splat, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1053), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1051), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2265), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1717), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33793,7 +33968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33810,68 +33985,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6584] = 25, - ACTIONS(67), 1, + [6812] = 25, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(649), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(341), 1, + anon_sym_STAR_STAR, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1063), 1, - sym_identifier, ACTIONS(1065), 1, anon_sym_STAR, ACTIONS(1067), 1, - anon_sym_STAR_STAR, - STATE(865), 1, + anon_sym_not, + STATE(968), 1, sym_primary_expression, - STATE(969), 1, + STATE(1033), 1, sym_string, - STATE(1119), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1752), 1, sym_expression, - STATE(1972), 1, + STATE(2470), 1, sym_type, - STATE(2751), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1894), 5, + STATE(2016), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33879,7 +34054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33896,7 +34071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6695] = 25, + [6923] = 25, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -33911,23 +34086,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1063), 1, + ACTIONS(1059), 1, sym_identifier, - ACTIONS(1065), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1067), 1, + ACTIONS(1063), 1, anon_sym_STAR_STAR, - STATE(865), 1, + STATE(860), 1, sym_primary_expression, - STATE(969), 1, + STATE(967), 1, sym_string, - STATE(1119), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1726), 1, sym_expression, - STATE(1974), 1, + STATE(2067), 1, sym_type, - STATE(2751), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -33951,13 +34126,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1894), 5, + STATE(1899), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1666), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33965,7 +34140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33982,80 +34157,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6806] = 25, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [7034] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(312), 1, + anon_sym_TILDE, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1069), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1083), 1, + anon_sym_LPAREN, + ACTIONS(1085), 1, anon_sym_STAR, - ACTIONS(1077), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1091), 1, + anon_sym_LBRACK, + ACTIONS(1093), 1, anon_sym_await, - STATE(967), 1, - sym_primary_expression, - STATE(1028), 1, + STATE(1033), 1, sym_string, - STATE(1388), 1, + STATE(1467), 1, sym_list_splat_pattern, - STATE(1724), 1, - sym_expression, - STATE(1981), 1, - sym_type, - STATE(2638), 1, - sym__named_expression_lhs, + STATE(1594), 1, + sym_primary_expression, + STATE(1643), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(721), 3, + ACTIONS(680), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1089), 2, + anon_sym_match, + anon_sym_type, + STATE(1468), 2, + sym_attribute, + sym_subscript, + STATE(1644), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1087), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1945), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1723), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1270), 16, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -34068,68 +34224,86 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6917] = 25, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(973), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [7139] = 27, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1069), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1049), 1, anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(1055), 1, anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1057), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(1095), 1, + anon_sym_RPAREN, + ACTIONS(1097), 1, + anon_sym_COMMA, + STATE(965), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1003), 1, sym_string, - STATE(1388), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1714), 1, sym_expression, - STATE(2108), 1, - sym_type, - STATE(2638), 1, + STATE(2239), 1, + sym_parenthesized_list_splat, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1053), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1051), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + STATE(2399), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1945), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1723), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34137,7 +34311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34154,70 +34328,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7028] = 27, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [7254] = 25, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1029), 1, - anon_sym_RPAREN, - ACTIONS(1031), 1, - anon_sym_COMMA, - ACTIONS(1039), 1, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(341), 1, anon_sym_STAR_STAR, - ACTIONS(1053), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, - sym_identifier, - ACTIONS(1083), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1089), 1, - anon_sym_await, - STATE(963), 1, + ACTIONS(1067), 1, + anon_sym_not, + STATE(968), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1033), 1, sym_string, - STATE(1258), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1677), 1, + STATE(1752), 1, sym_expression, - STATE(2325), 1, - sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(2310), 1, + sym_type, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1087), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1085), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2323), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(753), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(2016), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34225,7 +34397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34242,14 +34414,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7143] = 25, - ACTIONS(801), 1, + [7365] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -34263,28 +34435,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1757), 1, sym_expression, - STATE(2060), 1, + STATE(2092), 1, sym_type, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -34292,18 +34464,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(2011), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34311,7 +34483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34328,68 +34500,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7254] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(310), 1, + [7476] = 27, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(1041), 1, + sym_identifier, + ACTIONS(1043), 1, anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, - anon_sym_STAR, ACTIONS(1049), 1, - anon_sym_not, - STATE(970), 1, + anon_sym_STAR, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1057), 1, + anon_sym_await, + ACTIONS(1099), 1, + anon_sym_RPAREN, + ACTIONS(1101), 1, + anon_sym_COMMA, + STATE(965), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1003), 1, sym_string, - STATE(1342), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1690), 1, sym_expression, - STATE(2442), 1, - sym_type, - STATE(2775), 1, + STATE(2463), 1, + sym_parenthesized_list_splat, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1053), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1051), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2462), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1717), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34397,7 +34571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34414,70 +34588,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7365] = 27, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [7591] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1053), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1059), 1, sym_identifier, - ACTIONS(1083), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1089), 1, - anon_sym_await, - ACTIONS(1091), 1, - anon_sym_RPAREN, - ACTIONS(1093), 1, - anon_sym_COMMA, - STATE(963), 1, + ACTIONS(1063), 1, + anon_sym_STAR_STAR, + STATE(860), 1, sym_primary_expression, - STATE(1015), 1, + STATE(967), 1, sym_string, - STATE(1258), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1682), 1, + STATE(1726), 1, sym_expression, - STATE(2466), 1, - sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(1896), 1, + sym_type, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1087), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1085), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2465), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(753), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1899), 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, @@ -34485,7 +34657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34502,68 +34674,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7480] = 25, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, + [7702] = 27, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(1097), 1, - anon_sym_from, - ACTIONS(1105), 1, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1049), 1, + anon_sym_STAR, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1057), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1103), 1, + anon_sym_RPAREN, + ACTIONS(1105), 1, + anon_sym_COMMA, + STATE(965), 1, sym_primary_expression, - STATE(975), 1, + STATE(1003), 1, sym_string, - STATE(1214), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1676), 1, sym_expression, - STATE(2001), 1, - sym_expression_list, - STATE(2773), 1, + STATE(2362), 1, + sym_parenthesized_list_splat, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(1053), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(1051), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + STATE(2361), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1099), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1767), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34571,7 +34745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34588,61 +34762,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7591] = 22, - ACTIONS(310), 1, + [7817] = 25, + ACTIONS(686), 1, + anon_sym_LPAREN, + ACTIONS(694), 1, + anon_sym_LBRACK, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(315), 1, - anon_sym_TILDE, - ACTIONS(327), 1, + ACTIONS(704), 1, sym_string_start, + ACTIONS(1003), 1, + anon_sym_STAR, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1013), 1, + anon_sym_lambda, ACTIONS(1107), 1, sym_identifier, ACTIONS(1109), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_STAR, + anon_sym_from, ACTIONS(1117), 1, - anon_sym_LBRACK, - ACTIONS(1119), 1, anon_sym_await, - STATE(1010), 1, + STATE(946), 1, + sym_primary_expression, + STATE(981), 1, sym_string, - STATE(1481), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1616), 1, - sym_primary_expression, - STATE(1639), 1, - sym_pattern, + STATE(1728), 1, + sym_expression, + STATE(2085), 1, + sym_expression_list, + STATE(2746), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(1482), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + ACTIONS(1111), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1762), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -34655,77 +34848,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(959), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [7696] = 22, - ACTIONS(310), 1, + [7928] = 25, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(315), 1, - anon_sym_TILDE, - ACTIONS(327), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1107), 1, + ACTIONS(975), 1, sym_identifier, - ACTIONS(1109), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(1117), 1, - anon_sym_LBRACK, - ACTIONS(1119), 1, + ACTIONS(983), 1, + anon_sym_STAR_STAR, + ACTIONS(987), 1, + anon_sym_not, + ACTIONS(989), 1, + anon_sym_lambda, + ACTIONS(991), 1, anon_sym_await, - STATE(1010), 1, + STATE(979), 1, + sym_primary_expression, + STATE(1069), 1, sym_string, - STATE(1481), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1616), 1, - sym_primary_expression, - STATE(1639), 1, - sym_pattern, + STATE(1757), 1, + sym_expression, + STATE(1923), 1, + sym_type, + STATE(2611), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1115), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - STATE(1482), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1113), 3, + ACTIONS(789), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(2011), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1767), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -34738,32 +34934,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(973), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [7801] = 25, + [8039] = 25, ACTIONS(275), 1, sym_identifier, - ACTIONS(310), 1, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(341), 1, anon_sym_STAR_STAR, @@ -34771,40 +34951,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1752), 1, sym_expression, - STATE(2293), 1, + STATE(2065), 1, sym_type, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, @@ -34815,7 +34995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_constrained_type, sym_member_type, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34823,7 +35003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34840,42 +35020,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7912] = 27, + [8150] = 27, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1055), 1, anon_sym_STAR_STAR, - ACTIONS(1053), 1, - anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1077), 1, + anon_sym_RPAREN, + ACTIONS(1079), 1, + anon_sym_COMMA, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1083), 1, - anon_sym_STAR, - ACTIONS(1089), 1, - anon_sym_await, ACTIONS(1121), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(1123), 1, - anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(1129), 1, + anon_sym_await, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1687), 1, + STATE(1876), 1, sym_expression, - STATE(2274), 1, + STATE(2266), 1, sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -34883,27 +35063,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1087), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1085), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2273), 3, + STATE(2265), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(753), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34911,7 +35091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34928,68 +35108,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8027] = 25, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [8265] = 25, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1069), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_STAR, - ACTIONS(1077), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(322), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(341), 1, + anon_sym_STAR_STAR, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1065), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_not, + STATE(968), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1033), 1, sym_string, - STATE(1388), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1752), 1, sym_expression, - STATE(1957), 1, + STATE(2486), 1, sym_type, - STATE(2638), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1075), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1945), 5, + STATE(2016), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1723), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34997,7 +35177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35014,68 +35194,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8138] = 25, - ACTIONS(711), 1, + [8376] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1069), 1, + ACTIONS(975), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(983), 1, anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(987), 1, + anon_sym_not, + ACTIONS(989), 1, + anon_sym_lambda, + ACTIONS(991), 1, anon_sym_await, - STATE(967), 1, + STATE(979), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1069), 1, sym_string, - STATE(1388), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1757), 1, sym_expression, - STATE(1960), 1, + STATE(1940), 1, sym_type, - STATE(2638), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1945), 5, + STATE(2011), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1723), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35083,7 +35263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35100,68 +35280,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8249] = 25, - ACTIONS(67), 1, + [8487] = 25, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(649), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(341), 1, + anon_sym_STAR_STAR, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1063), 1, - sym_identifier, ACTIONS(1065), 1, anon_sym_STAR, ACTIONS(1067), 1, - anon_sym_STAR_STAR, - STATE(865), 1, + anon_sym_not, + STATE(968), 1, sym_primary_expression, - STATE(969), 1, + STATE(1033), 1, sym_string, - STATE(1119), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1752), 1, sym_expression, - STATE(1979), 1, + STATE(2488), 1, sym_type, - STATE(2751), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1894), 5, + STATE(2016), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35169,7 +35349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35186,42 +35366,38 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8360] = 27, + [8598] = 25, + ACTIONS(757), 1, + anon_sym_LPAREN, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(1025), 1, + sym_identifier, + ACTIONS(1027), 1, + anon_sym_STAR, + ACTIONS(1033), 1, + anon_sym_STAR_STAR, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1037), 1, anon_sym_lambda, ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1053), 1, - anon_sym_LPAREN, - ACTIONS(1081), 1, - sym_identifier, - ACTIONS(1083), 1, - anon_sym_STAR, - ACTIONS(1089), 1, anon_sym_await, - ACTIONS(1125), 1, - anon_sym_RPAREN, - ACTIONS(1127), 1, - anon_sym_COMMA, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1693), 1, + STATE(1737), 1, sym_expression, - STATE(2317), 1, - sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(2063), 1, + sym_type, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -35229,27 +35405,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1087), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1085), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2316), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(753), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1954), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35257,7 +35435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35274,70 +35452,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8475] = 27, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [8709] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1053), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1059), 1, sym_identifier, - ACTIONS(1083), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1089), 1, - anon_sym_await, - ACTIONS(1129), 1, - anon_sym_RPAREN, - ACTIONS(1131), 1, - anon_sym_COMMA, - STATE(963), 1, + ACTIONS(1063), 1, + anon_sym_STAR_STAR, + STATE(860), 1, sym_primary_expression, - STATE(1015), 1, + STATE(967), 1, sym_string, - STATE(1258), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1698), 1, + STATE(1726), 1, sym_expression, - STATE(2355), 1, - sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(1926), 1, + sym_type, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1087), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1085), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2354), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(753), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1899), 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, @@ -35345,7 +35521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35362,70 +35538,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8590] = 27, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [8820] = 25, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(341), 1, anon_sym_STAR_STAR, - ACTIONS(1053), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, - sym_identifier, - ACTIONS(1083), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1089), 1, - anon_sym_await, - ACTIONS(1133), 1, - anon_sym_RPAREN, - ACTIONS(1135), 1, - anon_sym_COMMA, - STATE(963), 1, + ACTIONS(1067), 1, + anon_sym_not, + STATE(968), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1033), 1, sym_string, - STATE(1258), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1702), 1, + STATE(1752), 1, sym_expression, - STATE(2389), 1, - sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(2292), 1, + sym_type, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1087), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1085), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2388), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(753), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(2016), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35433,7 +35607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35450,82 +35624,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8705] = 27, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [8931] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(312), 1, + anon_sym_TILDE, + ACTIONS(324), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, - anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1053), 1, - anon_sym_LPAREN, ACTIONS(1081), 1, sym_identifier, ACTIONS(1083), 1, + anon_sym_LPAREN, + ACTIONS(1085), 1, anon_sym_STAR, - ACTIONS(1089), 1, + ACTIONS(1091), 1, + anon_sym_LBRACK, + ACTIONS(1093), 1, anon_sym_await, - ACTIONS(1137), 1, - anon_sym_RPAREN, - ACTIONS(1139), 1, - anon_sym_COMMA, - STATE(963), 1, - sym_primary_expression, - STATE(1015), 1, + STATE(1033), 1, sym_string, - STATE(1258), 1, + STATE(1467), 1, sym_list_splat_pattern, - STATE(1708), 1, - sym_expression, - STATE(2370), 1, - sym_parenthesized_list_splat, - STATE(2771), 1, - sym__named_expression_lhs, + STATE(1594), 1, + sym_primary_expression, + STATE(1643), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(1087), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(767), 3, + ACTIONS(680), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1085), 3, + ACTIONS(1089), 2, + anon_sym_match, + anon_sym_type, + STATE(1468), 2, + sym_attribute, + sym_subscript, + STATE(1644), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1087), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2336), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(753), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1367), 16, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -35538,14 +35691,30 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8820] = 25, - ACTIONS(801), 1, + ACTIONS(959), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [9036] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -35559,28 +35728,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1757), 1, sym_expression, - STATE(1958), 1, + STATE(1968), 1, sym_type, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -35588,18 +35757,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(2011), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35607,7 +35776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35624,68 +35793,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8931] = 25, - ACTIONS(801), 1, + [9147] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(1027), 1, anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(1033), 1, anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1039), 1, anon_sym_await, - STATE(976), 1, + STATE(963), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1025), 1, sym_string, - STATE(1437), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1737), 1, sym_expression, - STATE(1985), 1, + STATE(1903), 1, sym_type, - STATE(2777), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(1954), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35693,7 +35862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35710,68 +35879,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9042] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [9258] = 25, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(975), 1, - sym_identifier, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(341), 1, anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1065), 1, + anon_sym_STAR, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - STATE(976), 1, + STATE(968), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1033), 1, sym_string, - STATE(1437), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1752), 1, sym_expression, - STATE(1904), 1, + STATE(2483), 1, sym_type, - STATE(2777), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(2016), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35779,7 +35948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35796,70 +35965,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9153] = 27, - ACTIONS(765), 1, + [9369] = 28, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(879), 1, + anon_sym_STAR, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1053), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(1043), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1131), 1, sym_identifier, - ACTIONS(1083), 1, - anon_sym_STAR, - ACTIONS(1089), 1, - anon_sym_await, - ACTIONS(1141), 1, + ACTIONS(1133), 1, anon_sym_RPAREN, - ACTIONS(1143), 1, - anon_sym_COMMA, - STATE(963), 1, + ACTIONS(1139), 1, + anon_sym_await, + STATE(965), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1003), 1, sym_string, - STATE(1258), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1710), 1, sym_expression, - STATE(2448), 1, - sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(2282), 1, + sym_yield, + STATE(2347), 1, + sym_with_item, + STATE(2614), 1, sym__named_expression_lhs, + STATE(2720), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1087), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + STATE(2247), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1085), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2447), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(753), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35867,7 +36037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35884,68 +36054,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9268] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(310), 1, + [9486] = 27, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(1041), 1, + sym_identifier, + ACTIONS(1043), 1, anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, - anon_sym_STAR, ACTIONS(1049), 1, - anon_sym_not, - STATE(970), 1, + anon_sym_STAR, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1057), 1, + anon_sym_await, + ACTIONS(1141), 1, + anon_sym_RPAREN, + ACTIONS(1143), 1, + anon_sym_COMMA, + STATE(965), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1003), 1, sym_string, - STATE(1342), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1688), 1, sym_expression, - STATE(2437), 1, - sym_type, - STATE(2775), 1, + STATE(2490), 1, + sym_parenthesized_list_splat, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1053), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, + ACTIONS(1051), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2491), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(731), 4, + sym_integer, + sym_true, + sym_false, sym_none, - STATE(2016), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1717), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35953,7 +36125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35970,16 +36142,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9379] = 25, + [9601] = 25, ACTIONS(275), 1, sym_identifier, - ACTIONS(310), 1, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(341), 1, anon_sym_STAR_STAR, @@ -35987,40 +36159,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1752), 1, sym_expression, - STATE(2440), 1, + STATE(2072), 1, sym_type, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, @@ -36031,7 +36203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_constrained_type, sym_member_type, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36039,7 +36211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36056,68 +36228,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9490] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(310), 1, + [9712] = 27, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(887), 1, anon_sym_not, - STATE(970), 1, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, + anon_sym_await, + ACTIONS(1145), 1, + anon_sym_RPAREN, + STATE(965), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1003), 1, sym_string, - STATE(1342), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1695), 1, sym_expression, - STATE(2441), 1, - sym_type, - STATE(2775), 1, + STATE(2414), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, + STATE(2615), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1137), 2, + anon_sym_match, + anon_sym_type, + STATE(2247), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1135), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1717), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36125,7 +36298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36142,38 +36315,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9601] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, + [9826] = 26, ACTIONS(809), 1, anon_sym_LBRACK, ACTIONS(813), 1, anon_sym_LBRACE, ACTIONS(819), 1, sym_string_start, - ACTIONS(975), 1, - sym_identifier, - ACTIONS(977), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(983), 1, - anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1147), 1, + sym_identifier, + ACTIONS(1149), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_RBRACK, + ACTIONS(1157), 1, anon_sym_await, - STATE(976), 1, + STATE(964), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1022), 1, sym_string, - STATE(1437), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1689), 1, sym_expression, - STATE(2061), 1, - sym_type, - STATE(2777), 1, + STATE(2670), 1, + sym__collection_elements, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -36181,29 +36356,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, + STATE(2391), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1751), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36211,7 +36384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36228,68 +36401,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9712] = 26, - ACTIONS(719), 1, + [9938] = 27, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1145), 1, + ACTIONS(1159), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1003), 1, sym_string, - STATE(1388), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1700), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2460), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, + STATE(2686), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(2247), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36297,7 +36471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36314,63 +36488,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9824] = 26, - ACTIONS(719), 1, + [10052] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1147), 1, + ACTIONS(1161), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -36383,7 +36557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36400,46 +36574,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9936] = 28, + [10164] = 26, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1123), 1, + anon_sym_STAR, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1163), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1686), 1, + STATE(1945), 1, sym_expression, - STATE(2264), 1, - sym_yield, - STATE(2314), 1, - sym_list_splat, - STATE(2315), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2700), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -36447,23 +36615,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2511), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36471,7 +36643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36488,42 +36660,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10052] = 27, + [10276] = 26, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1055), 1, - anon_sym_RPAREN, - ACTIONS(1061), 1, + ACTIONS(1123), 1, + anon_sym_STAR, + ACTIONS(1129), 1, anon_sym_await, + ACTIONS(1165), 1, + anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1945), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2613), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2508), 1, + sym_parenthesized_list_splat, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -36531,26 +36701,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2511), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36558,7 +36729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36575,63 +36746,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10166] = 26, - ACTIONS(719), 1, + [10388] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1151), 1, + ACTIONS(1167), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -36644,7 +36815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36661,68 +36832,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10278] = 26, - ACTIONS(719), 1, + [10500] = 28, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1153), 1, + ACTIONS(1169), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1003), 1, sym_string, - STATE(1388), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1692), 1, sym_expression, - STATE(2582), 1, + STATE(2253), 1, + sym_list_splat, + STATE(2254), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2494), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, + STATE(2774), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36730,7 +36903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36747,63 +36920,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10390] = 26, - ACTIONS(719), 1, + [10616] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(1171), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -36816,7 +36989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36833,42 +37006,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10502] = 27, + [10728] = 26, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1123), 1, + anon_sym_STAR, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(1173), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1697), 1, + STATE(1945), 1, sym_expression, - STATE(2344), 1, - sym_yield, - STATE(2652), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2508), 1, + sym_parenthesized_list_splat, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -36876,26 +37047,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2511), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36903,7 +37075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36920,68 +37092,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10616] = 26, - ACTIONS(787), 1, + [10840] = 26, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(839), 1, anon_sym_yield, - ACTIONS(1159), 1, + ACTIONS(1147), 1, sym_identifier, - ACTIONS(1161), 1, + ACTIONS(1149), 1, anon_sym_LPAREN, - ACTIONS(1167), 1, - anon_sym_RBRACK, - ACTIONS(1169), 1, + ACTIONS(1157), 1, anon_sym_await, - STATE(965), 1, + ACTIONS(1175), 1, + anon_sym_RBRACK, + STATE(964), 1, sym_primary_expression, - STATE(996), 1, + STATE(1022), 1, sym_string, - STATE(1360), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1711), 1, + STATE(1697), 1, sym_expression, - STATE(2611), 1, - sym__named_expression_lhs, - STATE(2704), 1, + STATE(2674), 1, sym__collection_elements, + STATE(2690), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2391), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36989,7 +37161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37006,46 +37178,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10728] = 28, + [10952] = 26, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1123), 1, + anon_sym_STAR, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1177), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1680), 1, + STATE(1945), 1, sym_expression, - STATE(2379), 1, - sym_list_splat, - STATE(2381), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2443), 1, - sym_yield, - STATE(2631), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -37053,23 +37219,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2511), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37077,7 +37247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37094,63 +37264,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10844] = 26, - ACTIONS(719), 1, + [11064] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1173), 1, + ACTIONS(1179), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -37163,7 +37333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37180,68 +37350,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10956] = 26, - ACTIONS(719), 1, + [11176] = 28, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1175), 1, + ACTIONS(1181), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1003), 1, sym_string, - STATE(1388), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1713), 1, sym_expression, - STATE(2582), 1, + STATE(2253), 1, + sym_list_splat, + STATE(2254), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2436), 1, + sym_yield, + STATE(2602), 1, + sym__collection_elements, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37249,7 +37421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37266,63 +37438,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11068] = 26, - ACTIONS(719), 1, + [11292] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1177), 1, + ACTIONS(1183), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -37335,7 +37507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37352,68 +37524,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11180] = 26, - ACTIONS(719), 1, + [11404] = 26, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1147), 1, + sym_identifier, + ACTIONS(1149), 1, + anon_sym_LPAREN, + ACTIONS(1157), 1, anon_sym_await, - ACTIONS(1179), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1185), 1, + anon_sym_RBRACK, + STATE(964), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1022), 1, sym_string, - STATE(1388), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1715), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2640), 1, + sym__collection_elements, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2391), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37421,7 +37593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37438,68 +37610,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11292] = 26, - ACTIONS(719), 1, + [11516] = 27, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(1187), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1003), 1, sym_string, - STATE(1388), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1703), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2340), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, + STATE(2682), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(2247), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37507,7 +37680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37524,42 +37697,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11404] = 27, + [11630] = 26, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1123), 1, + anon_sym_STAR, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1183), 1, + ACTIONS(1189), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1688), 1, + STATE(1945), 1, sym_expression, - STATE(2242), 1, - sym_yield, - STATE(2736), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2508), 1, + sym_parenthesized_list_splat, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -37567,26 +37738,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2511), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37594,7 +37766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37611,68 +37783,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11518] = 26, - ACTIONS(787), 1, + [11742] = 27, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1161), 1, + ACTIONS(1043), 1, anon_sym_LPAREN, - ACTIONS(1169), 1, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1185), 1, - anon_sym_RBRACK, + ACTIONS(1191), 1, + anon_sym_RPAREN, STATE(965), 1, sym_primary_expression, - STATE(996), 1, + STATE(1003), 1, sym_string, - STATE(1360), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1704), 1, sym_expression, - STATE(2611), 1, + STATE(2251), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, - STATE(2661), 1, + STATE(2757), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + STATE(2247), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37680,7 +37853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37697,14 +37870,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11630] = 28, - ACTIONS(765), 1, + [11856] = 26, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(825), 1, anon_sym_STAR, ACTIONS(835), 1, anon_sym_not, @@ -37712,55 +37885,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(839), 1, anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1147), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1149), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, - anon_sym_await, ACTIONS(1157), 1, - anon_sym_RPAREN, - STATE(963), 1, + anon_sym_await, + ACTIONS(1193), 1, + anon_sym_RBRACK, + STATE(964), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1022), 1, sym_string, - STATE(1258), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1697), 1, + STATE(1705), 1, sym_expression, - STATE(2344), 1, - sym_yield, - STATE(2434), 1, - sym_list_splat, - STATE(2435), 1, - sym_parenthesized_list_splat, - STATE(2652), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2690), 1, sym__named_expression_lhs, + STATE(2740), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2391), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37768,7 +37939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37785,68 +37956,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11746] = 26, - ACTIONS(719), 1, + [11968] = 28, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1187), 1, + ACTIONS(1159), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1003), 1, sym_string, - STATE(1388), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1700), 1, sym_expression, - STATE(2582), 1, + STATE(2291), 1, + sym_list_splat, + STATE(2304), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2460), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, + STATE(2686), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37854,7 +38027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37871,63 +38044,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11858] = 26, - ACTIONS(719), 1, + [12084] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1189), 1, + ACTIONS(1195), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -37940,7 +38113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37957,68 +38130,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11970] = 26, - ACTIONS(719), 1, + [12196] = 28, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1191), 1, + ACTIONS(1145), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1003), 1, sym_string, - STATE(1388), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1695), 1, sym_expression, - STATE(2582), 1, + STATE(2414), 1, + sym_yield, + STATE(2418), 1, + sym_list_splat, + STATE(2492), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2614), 1, sym__named_expression_lhs, + STATE(2615), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38026,7 +38201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38043,63 +38218,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12082] = 26, - ACTIONS(719), 1, + [12312] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1193), 1, + ACTIONS(1197), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -38112,7 +38287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38129,68 +38304,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12194] = 26, - ACTIONS(719), 1, + [12424] = 26, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1147), 1, + sym_identifier, + ACTIONS(1149), 1, + anon_sym_LPAREN, + ACTIONS(1157), 1, anon_sym_await, - ACTIONS(1195), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1199), 1, + anon_sym_RBRACK, + STATE(964), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1022), 1, sym_string, - STATE(1388), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1691), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2647), 1, + sym__collection_elements, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2391), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38198,7 +38373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38215,14 +38390,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12306] = 27, - ACTIONS(765), 1, + [12536] = 26, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(825), 1, anon_sym_STAR, ACTIONS(835), 1, anon_sym_not, @@ -38230,54 +38405,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(839), 1, anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1147), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1149), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1157), 1, anon_sym_await, - ACTIONS(1197), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(1201), 1, + anon_sym_RBRACK, + STATE(964), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1022), 1, sym_string, - STATE(1258), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1701), 1, + STATE(1716), 1, sym_expression, - STATE(2377), 1, - sym_yield, - STATE(2601), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2690), 1, sym__named_expression_lhs, + STATE(2790), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(767), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2391), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38285,7 +38459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38302,68 +38476,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12420] = 26, - ACTIONS(787), 1, + [12648] = 27, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1161), 1, + ACTIONS(1043), 1, anon_sym_LPAREN, - ACTIONS(1169), 1, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1133), 1, + anon_sym_RPAREN, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1199), 1, - anon_sym_RBRACK, STATE(965), 1, sym_primary_expression, - STATE(996), 1, + STATE(1003), 1, sym_string, - STATE(1360), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1705), 1, + STATE(1685), 1, sym_expression, - STATE(2611), 1, + STATE(2282), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, - STATE(2664), 1, + STATE(2720), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + STATE(2247), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38371,7 +38546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38388,68 +38563,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12532] = 26, - ACTIONS(719), 1, + [12762] = 27, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1201), 1, + ACTIONS(1169), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1003), 1, sym_string, - STATE(1388), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1692), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2494), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, + STATE(2774), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(2247), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38457,7 +38633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38474,63 +38650,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12644] = 26, - ACTIONS(719), 1, + [12876] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, ACTIONS(1203), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -38543,7 +38719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38560,68 +38736,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12756] = 26, - ACTIONS(719), 1, + [12988] = 26, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1147), 1, + sym_identifier, + ACTIONS(1149), 1, + anon_sym_LPAREN, + ACTIONS(1157), 1, anon_sym_await, ACTIONS(1205), 1, - anon_sym_RPAREN, - STATE(967), 1, + anon_sym_RBRACK, + STATE(964), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1022), 1, sym_string, - STATE(1388), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1711), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2616), 1, + sym__collection_elements, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2391), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38629,7 +38805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38646,63 +38822,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12868] = 26, - ACTIONS(719), 1, + [13100] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, ACTIONS(1207), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -38715,7 +38891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38732,42 +38908,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12980] = 27, + [13212] = 26, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1123), 1, + anon_sym_STAR, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1209), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1680), 1, + STATE(1945), 1, sym_expression, - STATE(2443), 1, - sym_yield, - STATE(2631), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2508), 1, + sym_parenthesized_list_splat, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -38775,26 +38949,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2511), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38802,7 +38977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38819,68 +38994,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13094] = 26, - ACTIONS(787), 1, + [13324] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(873), 1, - anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(887), 1, - anon_sym_yield, - ACTIONS(1159), 1, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1161), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1169), 1, + ACTIONS(1123), 1, + anon_sym_STAR, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1209), 1, - anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(1211), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(996), 1, + STATE(1025), 1, sym_string, - STATE(1360), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1945), 1, sym_expression, - STATE(2611), 1, + STATE(2508), 1, + sym_parenthesized_list_splat, + STATE(2691), 1, sym__named_expression_lhs, - STATE(2654), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2511), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38888,7 +39063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38905,70 +39080,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13206] = 28, + [13436] = 26, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1123), 1, + anon_sym_STAR, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1211), 1, + ACTIONS(1213), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1691), 1, + STATE(1945), 1, sym_expression, - STATE(2303), 1, - sym_yield, - STATE(2314), 1, - sym_list_splat, - STATE(2315), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(2691), 1, sym__named_expression_lhs, - STATE(2782), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2511), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38976,7 +39149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38993,63 +39166,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13322] = 26, - ACTIONS(719), 1, + [13548] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1213), 1, + ACTIONS(1215), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -39062,7 +39235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39079,63 +39252,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13434] = 26, - ACTIONS(719), 1, + [13660] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1215), 1, + ACTIONS(1217), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -39148,7 +39321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39165,63 +39338,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13546] = 26, - ACTIONS(719), 1, + [13772] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1217), 1, + ACTIONS(1219), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -39234,7 +39407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39251,68 +39424,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13658] = 26, - ACTIONS(719), 1, + [13884] = 27, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1219), 1, + ACTIONS(1221), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1003), 1, sym_string, - STATE(1388), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1707), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2450), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, + STATE(2681), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(2247), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39320,7 +39494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39337,68 +39511,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13770] = 26, - ACTIONS(787), 1, + [13998] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(873), 1, - anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(887), 1, - anon_sym_yield, - ACTIONS(1159), 1, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1161), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1169), 1, + ACTIONS(1123), 1, + anon_sym_STAR, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1221), 1, - anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(1223), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(996), 1, + STATE(1025), 1, sym_string, - STATE(1360), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1945), 1, sym_expression, - STATE(2611), 1, + STATE(2508), 1, + sym_parenthesized_list_splat, + STATE(2691), 1, sym__named_expression_lhs, - STATE(2628), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2511), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39406,7 +39580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39423,14 +39597,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13882] = 27, - ACTIONS(765), 1, + [14110] = 26, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(825), 1, anon_sym_STAR, ACTIONS(835), 1, anon_sym_not, @@ -39438,54 +39612,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(839), 1, anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1147), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1149), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1157), 1, anon_sym_await, - ACTIONS(1211), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(1225), 1, + anon_sym_RBRACK, + STATE(964), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1022), 1, sym_string, - STATE(1258), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1691), 1, + STATE(1694), 1, sym_expression, - STATE(2303), 1, - sym_yield, - STATE(2771), 1, - sym__named_expression_lhs, - STATE(2782), 1, + STATE(2645), 1, sym__collection_elements, + STATE(2690), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(767), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2391), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39493,7 +39666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39510,68 +39683,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13996] = 26, - ACTIONS(787), 1, + [14222] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(873), 1, - anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(887), 1, - anon_sym_yield, - ACTIONS(1159), 1, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1161), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1169), 1, + ACTIONS(1123), 1, + anon_sym_STAR, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1223), 1, - anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(1227), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(996), 1, + STATE(1025), 1, sym_string, - STATE(1360), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1673), 1, + STATE(1945), 1, sym_expression, - STATE(2604), 1, - sym__collection_elements, - STATE(2611), 1, + STATE(2508), 1, + sym_parenthesized_list_splat, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2511), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39579,7 +39752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39596,63 +39769,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14108] = 26, - ACTIONS(719), 1, + [14334] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1225), 1, + ACTIONS(1229), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -39665,7 +39838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39682,68 +39855,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14220] = 26, - ACTIONS(719), 1, + [14446] = 28, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1227), 1, + ACTIONS(1187), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1003), 1, sym_string, - STATE(1388), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1703), 1, sym_expression, - STATE(2582), 1, + STATE(2340), 1, + sym_yield, + STATE(2418), 1, + sym_list_splat, + STATE(2492), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2614), 1, sym__named_expression_lhs, + STATE(2682), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39751,7 +39926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39768,63 +39943,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14332] = 26, - ACTIONS(719), 1, + [14562] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1229), 1, + ACTIONS(1231), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -39837,7 +40012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39854,63 +40029,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14444] = 26, - ACTIONS(719), 1, + [14674] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -39923,7 +40098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39940,42 +40115,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14556] = 27, + [14786] = 26, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1123), 1, + anon_sym_STAR, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1235), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1686), 1, + STATE(1945), 1, sym_expression, - STATE(2264), 1, - sym_yield, - STATE(2700), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2508), 1, + sym_parenthesized_list_splat, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -39983,26 +40156,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2511), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40010,7 +40184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40027,68 +40201,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14670] = 26, - ACTIONS(787), 1, + [14898] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(873), 1, - anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(887), 1, - anon_sym_yield, - ACTIONS(1159), 1, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1161), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1169), 1, + ACTIONS(1123), 1, + anon_sym_STAR, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1233), 1, - anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(1237), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(996), 1, + STATE(1025), 1, sym_string, - STATE(1360), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1712), 1, + STATE(1945), 1, sym_expression, - STATE(2611), 1, + STATE(2508), 1, + sym_parenthesized_list_splat, + STATE(2691), 1, sym__named_expression_lhs, - STATE(2792), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2511), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40096,7 +40270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40113,63 +40287,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14782] = 26, - ACTIONS(719), 1, + [15010] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1235), 1, + ACTIONS(1239), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -40182,7 +40356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40199,68 +40373,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14894] = 26, - ACTIONS(719), 1, + [15122] = 28, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1237), 1, + ACTIONS(1221), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1003), 1, sym_string, - STATE(1388), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1707), 1, sym_expression, - STATE(2582), 1, + STATE(2291), 1, + sym_list_splat, + STATE(2304), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2450), 1, + sym_yield, + STATE(2614), 1, sym__named_expression_lhs, + STATE(2681), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40268,7 +40444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40285,63 +40461,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15006] = 26, - ACTIONS(719), 1, + [15238] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1239), 1, + ACTIONS(1241), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -40354,7 +40530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40371,63 +40547,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15118] = 26, - ACTIONS(719), 1, + [15350] = 26, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1243), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1945), 1, sym_expression, - STATE(2582), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2511), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -40440,7 +40616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40457,42 +40633,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15230] = 27, + [15462] = 26, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1123), 1, + anon_sym_STAR, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1245), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1945), 1, sym_expression, - STATE(2353), 1, - sym_yield, - STATE(2647), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2508), 1, + sym_parenthesized_list_splat, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -40500,26 +40674,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2511), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40527,7 +40702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40544,68 +40719,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15344] = 26, - ACTIONS(787), 1, + [15574] = 27, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1161), 1, + ACTIONS(1043), 1, anon_sym_LPAREN, - ACTIONS(1169), 1, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1245), 1, - anon_sym_RBRACK, + ACTIONS(1181), 1, + anon_sym_RPAREN, STATE(965), 1, sym_primary_expression, - STATE(996), 1, + STATE(1003), 1, sym_string, - STATE(1360), 1, + STATE(1264), 1, sym_list_splat_pattern, STATE(1713), 1, sym_expression, - STATE(2611), 1, - sym__named_expression_lhs, - STATE(2743), 1, + STATE(2436), 1, + sym_yield, + STATE(2602), 1, sym__collection_elements, + STATE(2614), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + STATE(2247), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40613,7 +40789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40630,46 +40806,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15456] = 28, + [15688] = 26, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1123), 1, + anon_sym_STAR, + ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1183), 1, + ACTIONS(1247), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1688), 1, + STATE(1945), 1, sym_expression, - STATE(2242), 1, - sym_yield, - STATE(2434), 1, - sym_list_splat, - STATE(2435), 1, + STATE(2508), 1, sym_parenthesized_list_splat, - STATE(2736), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -40677,23 +40847,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2511), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40701,7 +40875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40718,40 +40892,36 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15572] = 26, + [15800] = 25, + ACTIONS(711), 1, + anon_sym_LPAREN, ACTIONS(719), 1, anon_sym_LBRACK, ACTIONS(723), 1, anon_sym_LBRACE, ACTIONS(729), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, - anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1247), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1249), 1, + anon_sym_STAR, + ACTIONS(1253), 1, + anon_sym_RBRACE, + ACTIONS(1255), 1, + anon_sym_lambda, + STATE(904), 1, sym_primary_expression, - STATE(1028), 1, + STATE(982), 1, sym_string, - STATE(1388), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1789), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -40759,27 +40929,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(851), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, + STATE(2032), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, - anon_sym_print, + ACTIONS(1251), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + anon_sym_for, ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40787,7 +40959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40804,70 +40976,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15684] = 28, - ACTIONS(765), 1, + [15909] = 25, + ACTIONS(801), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, ACTIONS(835), 1, anon_sym_not, - ACTIONS(837), 1, - anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1147), 1, sym_identifier, - ACTIONS(1053), 1, - anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1157), 1, anon_sym_await, - ACTIONS(1197), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(1253), 1, + anon_sym_RBRACK, + ACTIONS(1257), 1, + anon_sym_STAR, + ACTIONS(1259), 1, + anon_sym_lambda, + STATE(964), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1022), 1, sym_string, - STATE(1258), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1701), 1, + STATE(1804), 1, sym_expression, - STATE(2377), 1, - sym_yield, - STATE(2379), 1, - sym_list_splat, - STATE(2381), 1, - sym_parenthesized_list_splat, - STATE(2601), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1151), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + STATE(2074), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, - anon_sym_print, + ACTIONS(1251), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(753), 4, + anon_sym_for, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40875,7 +41043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40892,66 +41060,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15800] = 25, - ACTIONS(755), 1, + [16018] = 23, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(1003), 1, + anon_sym_STAR, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1051), 1, + ACTIONS(1013), 1, + anon_sym_lambda, + ACTIONS(1107), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1249), 1, - anon_sym_RPAREN, - ACTIONS(1251), 1, - anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(963), 1, + STATE(946), 1, sym_primary_expression, - STATE(1015), 1, + STATE(981), 1, sym_string, - STATE(1258), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1754), 1, sym_expression, - STATE(2771), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1057), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1059), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(2105), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(767), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1253), 3, - anon_sym_if, + ACTIONS(1113), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(753), 4, + anon_sym_exec, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + ACTIONS(1261), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40959,7 +41125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40976,14 +41142,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15909] = 25, - ACTIONS(809), 1, + [16123] = 25, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(839), 1, anon_sym_yield, ACTIONS(987), 1, anon_sym_not, @@ -40991,34 +41157,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(1265), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1267), 1, anon_sym_STAR, - ACTIONS(1263), 1, + ACTIONS(1269), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1944), 1, + STATE(1911), 1, sym_expression, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -41026,16 +41192,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2560), 3, + STATE(2549), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41043,7 +41209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41060,34 +41226,116 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16018] = 23, - ACTIONS(686), 1, + [16232] = 19, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(668), 1, anon_sym_LPAREN, + ACTIONS(672), 1, + anon_sym_STAR, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1107), 1, + sym_primary_expression, + STATE(1269), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(320), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1339), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [16329] = 25, ACTIONS(694), 1, anon_sym_LBRACK, ACTIONS(698), 1, anon_sym_LBRACE, ACTIONS(704), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(863), 1, + anon_sym_yield, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1013), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(1107), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(1117), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1271), 1, + anon_sym_LPAREN, + ACTIONS(1273), 1, + anon_sym_STAR, + ACTIONS(1275), 1, + anon_sym_RBRACE, + STATE(946), 1, sym_primary_expression, - STATE(975), 1, + STATE(981), 1, sym_string, - STATE(1214), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1991), 1, sym_expression, - STATE(2773), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -41095,29 +41343,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, + STATE(2510), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1265), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1767), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41125,7 +41371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41142,66 +41388,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16123] = 25, - ACTIONS(779), 1, + [16438] = 25, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(883), 1, - anon_sym_not, - ACTIONS(1159), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(859), 1, + anon_sym_not, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1249), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_RBRACK, - ACTIONS(1273), 1, + ACTIONS(1255), 1, anon_sym_lambda, - STATE(965), 1, + ACTIONS(1279), 1, + anon_sym_RBRACE, + STATE(904), 1, sym_primary_expression, - STATE(996), 1, + STATE(982), 1, sym_string, - STATE(1360), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1789), 1, sym_expression, - STATE(2611), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(851), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1165), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1998), 2, + STATE(2032), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1269), 3, + ACTIONS(1277), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(777), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41209,7 +41455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41226,61 +41472,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16232] = 25, - ACTIONS(694), 1, + [16547] = 25, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(839), 1, anon_sym_yield, - ACTIONS(1015), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(991), 1, anon_sym_await, ACTIONS(1263), 1, - anon_sym_RBRACE, - ACTIONS(1275), 1, + sym_identifier, + ACTIONS(1265), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(909), 1, + ACTIONS(1275), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(975), 1, + STATE(1069), 1, sym_string, - STATE(1214), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1902), 1, + STATE(1911), 1, sym_expression, - STATE(2773), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2509), 3, + STATE(2549), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(684), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, @@ -41293,7 +41539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41310,66 +41556,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16341] = 25, - ACTIONS(719), 1, + [16656] = 25, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, - anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(863), 1, + anon_sym_yield, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1013), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1107), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(1269), 1, + anon_sym_RBRACE, + ACTIONS(1271), 1, + anon_sym_LPAREN, + ACTIONS(1273), 1, + anon_sym_STAR, + STATE(946), 1, sym_primary_expression, - STATE(1028), 1, + STATE(981), 1, sym_string, - STATE(1388), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1991), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2510), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41377,7 +41623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41394,66 +41640,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16450] = 25, - ACTIONS(779), 1, + [16765] = 25, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1159), 1, + ACTIONS(1131), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1281), 1, + anon_sym_RPAREN, + ACTIONS(1283), 1, anon_sym_STAR, - ACTIONS(1273), 1, + ACTIONS(1287), 1, anon_sym_lambda, - ACTIONS(1281), 1, - anon_sym_RBRACK, STATE(965), 1, sym_primary_expression, - STATE(996), 1, + STATE(1003), 1, sym_string, - STATE(1360), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1823), 1, sym_expression, - STATE(2611), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1135), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1165), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - STATE(1998), 2, + STATE(2018), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(789), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 3, + ACTIONS(1285), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(777), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41461,7 +41707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41478,36 +41724,38 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16559] = 25, - ACTIONS(755), 1, - anon_sym_LPAREN, + [16874] = 25, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_await, - ACTIONS(1251), 1, - anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1281), 1, + ACTIONS(1039), 1, + anon_sym_await, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1275), 1, anon_sym_RPAREN, + ACTIONS(1289), 1, + sym_identifier, + ACTIONS(1291), 1, + anon_sym_STAR, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1902), 1, sym_expression, - STATE(2771), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -41515,29 +41763,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1057), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1059), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - STATE(2105), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 3, - anon_sym_if, + ACTIONS(1029), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(753), 4, + anon_sym_exec, + STATE(2587), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41545,7 +41791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41562,66 +41808,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16668] = 25, - ACTIONS(755), 1, + [16983] = 25, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1051), 1, + ACTIONS(1131), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1279), 1, + anon_sym_RPAREN, + ACTIONS(1283), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1287), 1, anon_sym_lambda, - ACTIONS(1283), 1, - anon_sym_RPAREN, - STATE(963), 1, + STATE(965), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1003), 1, sym_string, - STATE(1258), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1823), 1, sym_expression, - STATE(2771), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1057), 2, + ACTIONS(1135), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1059), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - STATE(2105), 2, + STATE(2018), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(767), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1285), 3, + ACTIONS(1277), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(753), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41629,7 +41875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41646,66 +41892,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16777] = 25, - ACTIONS(779), 1, + [17092] = 25, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(883), 1, - anon_sym_not, - ACTIONS(1159), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(859), 1, + anon_sym_not, + ACTIONS(865), 1, anon_sym_await, ACTIONS(1249), 1, - anon_sym_RBRACK, - ACTIONS(1267), 1, anon_sym_STAR, - ACTIONS(1273), 1, + ACTIONS(1255), 1, anon_sym_lambda, - STATE(965), 1, + ACTIONS(1281), 1, + anon_sym_RBRACE, + STATE(904), 1, sym_primary_expression, - STATE(996), 1, + STATE(982), 1, sym_string, - STATE(1360), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1789), 1, sym_expression, - STATE(2611), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(851), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1165), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1998), 2, + STATE(2032), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1253), 3, + ACTIONS(1285), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(777), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41713,7 +41959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41730,66 +41976,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16886] = 25, - ACTIONS(755), 1, + [17201] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(835), 1, anon_sym_not, - ACTIONS(1051), 1, + ACTIONS(1147), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1157), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1259), 1, anon_sym_lambda, - ACTIONS(1271), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(1295), 1, + anon_sym_RBRACK, + STATE(964), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1022), 1, sym_string, - STATE(1258), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1804), 1, sym_expression, - STATE(2771), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1057), 2, + ACTIONS(1151), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1059), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - STATE(2105), 2, + STATE(2074), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(767), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1269), 3, + ACTIONS(1293), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(753), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41797,7 +42043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41814,57 +42060,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16995] = 25, + [17310] = 25, ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1271), 1, - anon_sym_RBRACE, - ACTIONS(1287), 1, + ACTIONS(1253), 1, + anon_sym_RPAREN, + ACTIONS(1283), 1, anon_sym_STAR, - ACTIONS(1289), 1, + ACTIONS(1287), 1, anon_sym_lambda, - STATE(912), 1, + STATE(965), 1, sym_primary_expression, - STATE(971), 1, + STATE(1003), 1, sym_string, - STATE(1203), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(1823), 1, sym_expression, - STATE(2683), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(851), 2, + ACTIONS(1135), 2, anon_sym_print, anon_sym_exec, - ACTIONS(853), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - STATE(2093), 2, + STATE(2018), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1269), 3, + ACTIONS(1251), 3, anon_sym_if, anon_sym_async, anon_sym_for, @@ -41873,7 +42119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41881,7 +42127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41898,14 +42144,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17104] = 25, - ACTIONS(733), 1, + [17419] = 25, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(729), 1, sym_string_start, ACTIONS(843), 1, sym_identifier, @@ -41913,26 +42159,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(865), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_RBRACE, - ACTIONS(1287), 1, + ACTIONS(1249), 1, anon_sym_STAR, - ACTIONS(1289), 1, + ACTIONS(1255), 1, anon_sym_lambda, - STATE(912), 1, + ACTIONS(1295), 1, + anon_sym_RBRACE, + STATE(904), 1, sym_primary_expression, - STATE(971), 1, + STATE(982), 1, sym_string, - STATE(1203), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(1789), 1, sym_expression, - STATE(2683), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, ACTIONS(851), 2, @@ -41941,23 +42187,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(2093), 2, + STATE(2032), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 3, + ACTIONS(1293), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(731), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41965,7 +42211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41982,66 +42228,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17213] = 25, - ACTIONS(733), 1, + [17528] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1147), 1, + sym_identifier, + ACTIONS(1157), 1, anon_sym_await, - ACTIONS(1249), 1, - anon_sym_RBRACE, - ACTIONS(1287), 1, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_lambda, - STATE(912), 1, + ACTIONS(1281), 1, + anon_sym_RBRACK, + STATE(964), 1, sym_primary_expression, - STATE(971), 1, + STATE(1022), 1, sym_string, - STATE(1203), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(1804), 1, sym_expression, - STATE(2683), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(851), 2, + ACTIONS(1151), 2, anon_sym_print, anon_sym_exec, - ACTIONS(853), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - STATE(2093), 2, + STATE(2074), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1253), 3, + ACTIONS(1285), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(731), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42049,7 +42295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42066,150 +42312,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17322] = 25, - ACTIONS(779), 1, + [17637] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1159), 1, + ACTIONS(1147), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1157), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1273), 1, + ACTIONS(1259), 1, anon_sym_lambda, - ACTIONS(1283), 1, + ACTIONS(1279), 1, anon_sym_RBRACK, - STATE(965), 1, + STATE(964), 1, sym_primary_expression, - STATE(996), 1, + STATE(1022), 1, sym_string, - STATE(1360), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1804), 1, sym_expression, - STATE(2611), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1151), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1165), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - STATE(1998), 2, + STATE(2074), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1285), 3, + ACTIONS(1277), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(777), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1793), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1365), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [17431] = 25, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(863), 1, - anon_sym_yield, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, - anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_LPAREN, - ACTIONS(1277), 1, - anon_sym_STAR, - ACTIONS(1291), 1, - anon_sym_RBRACE, - STATE(909), 1, - sym_primary_expression, - STATE(975), 1, - sym_string, - STATE(1214), 1, - sym_list_splat_pattern, - STATE(1902), 1, - sym_expression, - STATE(2773), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(700), 2, - sym_ellipsis, - sym_float, - ACTIONS(1103), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(696), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1101), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - STATE(2509), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(684), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42217,7 +42379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42234,7 +42396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17540] = 23, + [17746] = 23, ACTIONS(686), 1, anon_sym_LPAREN, ACTIONS(694), 1, @@ -42243,25 +42405,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(704), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1003), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1013), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(1107), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(1117), 1, anon_sym_await, - STATE(909), 1, + STATE(946), 1, sym_primary_expression, - STATE(975), 1, + STATE(981), 1, sym_string, - STATE(1214), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1754), 1, sym_expression, - STATE(2773), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -42269,14 +42431,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -42285,13 +42447,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1293), 5, + ACTIONS(1297), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - STATE(1767), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42299,7 +42461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42316,61 +42478,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17645] = 25, - ACTIONS(719), 1, + [17851] = 25, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1041), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1263), 1, - anon_sym_RPAREN, - ACTIONS(1295), 1, + ACTIONS(1055), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1297), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(1129), 1, + anon_sym_await, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1945), 1, sym_expression, - STATE(2638), 1, + STATE(2508), 1, + sym_parenthesized_list_splat, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1127), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1125), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2558), 3, + STATE(2511), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(709), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -42383,85 +42545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [17754] = 19, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1051), 1, - sym_primary_expression, - STATE(1342), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(319), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(323), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1268), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42478,57 +42562,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17851] = 25, + [17960] = 25, ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, ACTIONS(1283), 1, - anon_sym_RBRACE, - ACTIONS(1287), 1, anon_sym_STAR, - ACTIONS(1289), 1, + ACTIONS(1287), 1, anon_sym_lambda, - STATE(912), 1, + ACTIONS(1295), 1, + anon_sym_RPAREN, + STATE(965), 1, sym_primary_expression, - STATE(971), 1, + STATE(1003), 1, sym_string, - STATE(1203), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(1823), 1, sym_expression, - STATE(2683), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(851), 2, + ACTIONS(1135), 2, anon_sym_print, anon_sym_exec, - ACTIONS(853), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - STATE(2093), 2, + STATE(2018), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1285), 3, + ACTIONS(1293), 3, anon_sym_if, anon_sym_async, anon_sym_for, @@ -42537,7 +42621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42545,7 +42629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42562,61 +42646,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17960] = 25, - ACTIONS(719), 1, + [18069] = 25, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(839), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1041), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1291), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1269), 1, anon_sym_RPAREN, - ACTIONS(1295), 1, + ACTIONS(1289), 1, sym_identifier, - ACTIONS(1297), 1, + ACTIONS(1291), 1, anon_sym_STAR, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1902), 1, sym_expression, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2558), 3, + STATE(2587), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -42629,7 +42713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42646,66 +42730,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18069] = 25, - ACTIONS(809), 1, + [18178] = 24, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(987), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1259), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, - anon_sym_STAR, + ACTIONS(1289), 1, + sym_identifier, ACTIONS(1291), 1, - anon_sym_RBRACK, - STATE(976), 1, + anon_sym_STAR, + STATE(963), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1025), 1, sym_string, - STATE(1437), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1944), 1, + STATE(1902), 1, sym_expression, - STATE(2777), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2560), 3, + STATE(2587), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(799), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42713,7 +42795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42730,59 +42812,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18178] = 24, - ACTIONS(719), 1, + [18284] = 25, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1041), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1289), 1, sym_identifier, - ACTIONS(1297), 1, + ACTIONS(1299), 1, + anon_sym_from, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1875), 1, sym_expression, - STATE(2638), 1, + STATE(2567), 1, + sym_expression_list, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(1111), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2558), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -42795,7 +42878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42812,65 +42895,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18284] = 25, - ACTIONS(67), 1, + [18392] = 25, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(672), 1, + anon_sym_STAR, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1301), 1, - anon_sym_from, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(1067), 1, + anon_sym_not, ACTIONS(1303), 1, - anon_sym_STAR, - STATE(865), 1, + anon_sym_RBRACE, + STATE(968), 1, sym_primary_expression, - STATE(969), 1, + STATE(1033), 1, sym_string, - STATE(1119), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(2046), 1, sym_expression, - STATE(2359), 1, - sym_expression_list, - STATE(2751), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(1299), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + STATE(2569), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42878,7 +42961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42895,14 +42978,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18392] = 25, - ACTIONS(310), 1, + [18500] = 25, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -42914,46 +42997,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, ACTIONS(1305), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(2046), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2569), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42961,7 +43044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42978,14 +43061,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18500] = 25, - ACTIONS(310), 1, + [18608] = 25, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -42997,46 +43080,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, ACTIONS(1307), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(2046), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2569), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43044,7 +43127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43061,14 +43144,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18608] = 25, - ACTIONS(310), 1, + [18716] = 25, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -43080,46 +43163,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, ACTIONS(1309), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(2046), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2569), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43127,7 +43210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43144,14 +43227,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18716] = 25, - ACTIONS(310), 1, + [18824] = 25, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -43163,46 +43246,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, ACTIONS(1311), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(2046), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2569), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43210,7 +43293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43227,65 +43310,147 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18824] = 25, - ACTIONS(711), 1, + [18932] = 25, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(672), 1, + anon_sym_STAR, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1313), 1, + anon_sym_RBRACE, + STATE(968), 1, + sym_primary_expression, + STATE(1033), 1, + sym_string, + STATE(1269), 1, + sym_list_splat_pattern, + STATE(2046), 1, + sym_expression, + STATE(2711), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(296), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + STATE(2569), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1720), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1339), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [19040] = 24, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1313), 1, - anon_sym_from, - ACTIONS(1315), 1, + ACTIONS(1265), 1, + anon_sym_LPAREN, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(967), 1, + STATE(979), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1069), 1, sym_string, - STATE(1388), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1848), 1, + STATE(1911), 1, sym_expression, - STATE(2555), 1, - sym_expression_list, - STATE(2638), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1099), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(721), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + STATE(2549), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43293,7 +43458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43310,65 +43475,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18932] = 25, - ACTIONS(310), 1, + [19146] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, + ACTIONS(1315), 1, + anon_sym_from, ACTIONS(1317), 1, - anon_sym_RBRACE, - STATE(970), 1, + anon_sym_STAR, + STATE(860), 1, sym_primary_expression, - STATE(1010), 1, + STATE(967), 1, sym_string, - STATE(1342), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1784), 1, sym_expression, + STATE(2528), 1, + sym_expression_list, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(2575), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1111), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43376,7 +43541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43393,64 +43558,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19040] = 24, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [19254] = 25, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(863), 1, - anon_sym_yield, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(672), 1, anon_sym_STAR, - STATE(909), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1319), 1, + anon_sym_RBRACE, + STATE(968), 1, sym_primary_expression, - STATE(975), 1, + STATE(1033), 1, sym_string, - STATE(1214), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1902), 1, + STATE(2046), 1, sym_expression, - STATE(2773), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, - sym_ellipsis, - sym_float, - ACTIONS(1103), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + STATE(2569), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2509), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(684), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43458,7 +43624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43475,14 +43641,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19146] = 25, - ACTIONS(310), 1, + [19362] = 25, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -43494,46 +43660,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1319), 1, + ACTIONS(1321), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(2046), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2569), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43541,7 +43707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43558,14 +43724,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19254] = 25, - ACTIONS(310), 1, + [19470] = 25, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -43577,46 +43743,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1321), 1, + ACTIONS(1323), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(2046), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2569), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43624,7 +43790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43641,14 +43807,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19362] = 25, - ACTIONS(310), 1, + [19578] = 25, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -43660,46 +43826,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1323), 1, + ACTIONS(1325), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(2046), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2569), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43707,7 +43873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43724,7 +43890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19470] = 25, + [19686] = 25, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -43741,21 +43907,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1317), 1, anon_sym_STAR, - ACTIONS(1325), 1, + ACTIONS(1329), 1, anon_sym_from, - STATE(865), 1, + STATE(860), 1, sym_primary_expression, - STATE(969), 1, + STATE(967), 1, sym_string, - STATE(1119), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1749), 1, sym_expression, - STATE(2596), 1, + STATE(2252), 1, sym_expression_list, - STATE(2751), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -43766,7 +43932,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(1099), 2, + ACTIONS(1327), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, @@ -43782,7 +43948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43790,7 +43956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43807,97 +43973,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19578] = 25, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1327), 1, - anon_sym_RBRACE, - STATE(970), 1, - sym_primary_expression, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1999), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - STATE(2575), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1717), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1268), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [19686] = 25, - ACTIONS(310), 1, + [19794] = 25, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -43909,46 +43992,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1329), 1, + ACTIONS(1331), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(2046), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2569), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43956,7 +44039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43973,65 +44056,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19794] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, + [19902] = 24, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(863), 1, + anon_sym_yield, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1013), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1107), 1, sym_identifier, - ACTIONS(1331), 1, - anon_sym_from, - ACTIONS(1333), 1, + ACTIONS(1117), 1, + anon_sym_await, + ACTIONS(1271), 1, + anon_sym_LPAREN, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(976), 1, + STATE(946), 1, sym_primary_expression, - STATE(1107), 1, + STATE(981), 1, sym_string, - STATE(1437), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1837), 1, + STATE(1991), 1, sym_expression, - STATE(2502), 1, - sym_expression_list, - STATE(2777), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(1099), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(811), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + STATE(2510), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44039,7 +44121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44056,14 +44138,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19902] = 25, - ACTIONS(310), 1, + [20008] = 25, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -44075,46 +44157,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1335), 1, + ACTIONS(1333), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(2046), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2569), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44122,7 +44204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44139,14 +44221,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20010] = 25, - ACTIONS(310), 1, + [20116] = 25, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -44158,46 +44240,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1337), 1, + ACTIONS(1335), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(2046), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2569), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44205,7 +44287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44222,14 +44304,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20118] = 25, - ACTIONS(310), 1, + [20224] = 25, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -44241,46 +44323,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1339), 1, + ACTIONS(1337), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(2046), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2569), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44288,7 +44370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44305,14 +44387,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20226] = 25, - ACTIONS(310), 1, + [20332] = 25, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -44324,46 +44406,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1341), 1, + ACTIONS(1339), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(2046), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2569), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44371,7 +44453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44388,65 +44470,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20334] = 25, - ACTIONS(310), 1, + [20440] = 25, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(987), 1, + anon_sym_not, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, + ACTIONS(1341), 1, + anon_sym_from, ACTIONS(1343), 1, - anon_sym_RBRACE, - STATE(970), 1, + anon_sym_STAR, + STATE(979), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1069), 1, sym_string, - STATE(1342), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1847), 1, sym_expression, - STATE(2775), 1, + STATE(2530), 1, + sym_expression_list, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - STATE(2575), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(981), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1111), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(979), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44454,7 +44536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44471,64 +44553,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20442] = 24, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [20548] = 25, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_yield, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(672), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1345), 1, + anon_sym_RBRACE, + STATE(968), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1033), 1, sym_string, - STATE(1437), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1944), 1, + STATE(2046), 1, sym_expression, - STATE(2777), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + STATE(2569), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2560), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(799), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44536,7 +44619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44553,65 +44636,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20548] = 25, - ACTIONS(310), 1, + [20656] = 25, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(987), 1, + anon_sym_not, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1345), 1, - anon_sym_RBRACE, - STATE(970), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + ACTIONS(1349), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1069), 1, sym_string, - STATE(1342), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1860), 1, sym_expression, - STATE(2775), 1, + STATE(2502), 1, + sym_slice, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - STATE(2575), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(981), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(979), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44619,7 +44701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44636,14 +44718,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20656] = 25, - ACTIONS(801), 1, + [20763] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -44651,36 +44733,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1349), 1, + ACTIONS(1351), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -44688,12 +44770,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44701,7 +44783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44718,14 +44800,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20763] = 24, - ACTIONS(801), 1, + [20870] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -44733,35 +44815,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1353), 1, + ACTIONS(1347), 1, anon_sym_COLON, - STATE(976), 1, + ACTIONS(1353), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1853), 1, + STATE(1860), 1, sym_expression, - STATE(2777), 1, + STATE(2502), 1, + sym_slice, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1351), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -44769,12 +44852,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44782,7 +44865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44799,14 +44882,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20868] = 25, - ACTIONS(801), 1, + [20977] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -44814,36 +44897,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1355), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -44851,12 +44934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44864,7 +44947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44881,14 +44964,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20975] = 25, - ACTIONS(801), 1, + [21084] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -44896,36 +44979,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1357), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -44933,12 +45016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44946,7 +45029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44963,14 +45046,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21082] = 25, - ACTIONS(801), 1, + [21191] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -44978,36 +45061,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1359), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -45015,12 +45098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45028,7 +45111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45045,14 +45128,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21189] = 25, - ACTIONS(801), 1, + [21298] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -45060,36 +45143,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1361), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -45097,12 +45180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45110,7 +45193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45127,64 +45210,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21296] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [21405] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1317), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, ACTIONS(1363), 1, - anon_sym_RBRACK, - STATE(976), 1, + anon_sym_from, + STATE(860), 1, sym_primary_expression, - STATE(1107), 1, + STATE(967), 1, sym_string, - STATE(1437), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1781), 1, sym_expression, - STATE(2503), 1, - sym_slice, - STATE(2777), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1261), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45192,7 +45274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45209,14 +45291,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21403] = 25, - ACTIONS(801), 1, + [21510] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -45224,36 +45306,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1365), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -45261,12 +45343,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45274,7 +45356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45291,14 +45373,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21510] = 25, - ACTIONS(801), 1, + [21617] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -45306,36 +45388,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1367), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -45343,12 +45425,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45356,7 +45438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45373,63 +45455,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21617] = 24, - ACTIONS(67), 1, + [21724] = 24, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1369), 1, - anon_sym_from, - STATE(865), 1, + ACTIONS(1371), 1, + anon_sym_COLON, + STATE(979), 1, sym_primary_expression, - STATE(969), 1, + STATE(1069), 1, sym_string, - STATE(1119), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1840), 1, sym_expression, - STATE(2751), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1265), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(1369), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45437,7 +45519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45454,14 +45536,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21722] = 24, - ACTIONS(310), 1, + [21829] = 24, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -45473,44 +45555,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(2046), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2569), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45518,7 +45600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45535,64 +45617,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21827] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [21934] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1317), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - ACTIONS(1371), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(1373), 1, + anon_sym_from, + STATE(860), 1, sym_primary_expression, - STATE(1107), 1, + STATE(967), 1, sym_string, - STATE(1437), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1781), 1, sym_expression, - STATE(2503), 1, - sym_slice, - STATE(2777), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1297), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45600,7 +45681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45617,63 +45698,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21934] = 24, - ACTIONS(67), 1, + [22039] = 25, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1373), 1, - anon_sym_from, - STATE(865), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + ACTIONS(1375), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(969), 1, + STATE(1069), 1, sym_string, - STATE(1119), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1860), 1, sym_expression, - STATE(2751), 1, + STATE(2502), 1, + sym_slice, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1293), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45681,7 +45763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45698,72 +45780,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22039] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [22146] = 19, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1333), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - ACTIONS(1375), 1, - anon_sym_RBRACK, - STATE(976), 1, - sym_primary_expression, - STATE(1107), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + STATE(1033), 1, sym_string, - STATE(1437), 1, + STATE(1107), 1, + sym_primary_expression, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1844), 1, - sym_expression, - STATE(2503), 1, - sym_slice, - STATE(2777), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(676), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(663), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(674), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(320), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1751), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1442), 16, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45780,14 +45856,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22146] = 25, - ACTIONS(801), 1, + [22241] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -45795,36 +45871,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1377), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -45832,12 +45908,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45845,7 +45921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45862,14 +45938,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22253] = 25, - ACTIONS(801), 1, + [22348] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -45877,36 +45953,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1379), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -45914,12 +45990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45927,7 +46003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45944,14 +46020,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22360] = 25, - ACTIONS(801), 1, + [22455] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -45959,36 +46035,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1381), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -45996,12 +46072,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46009,7 +46085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46026,14 +46102,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22467] = 25, - ACTIONS(801), 1, + [22562] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46041,36 +46117,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1383), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46078,12 +46154,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46091,83 +46167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [22574] = 19, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1051), 1, - sym_primary_expression, - STATE(1342), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(663), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(674), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1268), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46185,13 +46185,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [22669] = 25, - ACTIONS(801), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46199,36 +46199,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1385), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46236,12 +46236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46249,7 +46249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46267,13 +46267,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [22776] = 25, - ACTIONS(801), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46281,36 +46281,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1387), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46318,12 +46318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46331,7 +46331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46348,64 +46348,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22883] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [22883] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1317), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - ACTIONS(1389), 1, - anon_sym_RBRACK, - STATE(976), 1, + STATE(860), 1, sym_primary_expression, - STATE(1107), 1, + STATE(967), 1, sym_string, - STATE(1437), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1832), 1, sym_expression, - STATE(2503), 1, - sym_slice, - STATE(2777), 1, + STATE(2513), 1, + sym_expression_list, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1389), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46413,7 +46412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46430,14 +46429,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22990] = 25, - ACTIONS(801), 1, + [22988] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46445,36 +46444,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1391), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46482,12 +46481,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46495,7 +46494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46512,14 +46511,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23097] = 25, - ACTIONS(801), 1, + [23095] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46527,36 +46526,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1393), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46564,12 +46563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46577,7 +46576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46594,14 +46593,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23204] = 25, - ACTIONS(801), 1, + [23202] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46609,36 +46608,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1395), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46646,12 +46645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46659,7 +46658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46676,14 +46675,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23311] = 25, - ACTIONS(801), 1, + [23309] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46691,36 +46690,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1397), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46728,12 +46727,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46741,7 +46740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46758,14 +46757,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23418] = 25, - ACTIONS(801), 1, + [23416] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46773,36 +46772,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1399), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46810,12 +46809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46823,7 +46822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46840,14 +46839,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23525] = 25, - ACTIONS(801), 1, + [23523] = 24, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46855,36 +46854,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1403), 1, anon_sym_COLON, - ACTIONS(1401), 1, - anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1861), 1, sym_expression, - STATE(2503), 1, - sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1401), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46892,12 +46890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46905,7 +46903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46922,14 +46920,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23632] = 25, - ACTIONS(801), 1, + [23628] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46937,36 +46935,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1403), 1, + ACTIONS(1405), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46974,12 +46972,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46987,7 +46985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47004,14 +47002,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23739] = 25, - ACTIONS(801), 1, + [23735] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47019,36 +47017,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1405), 1, + ACTIONS(1407), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47056,12 +47054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47069,7 +47067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47086,14 +47084,90 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23846] = 24, - ACTIONS(801), 1, + [23842] = 19, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(672), 1, + anon_sym_STAR, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(682), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1107), 1, + sym_primary_expression, + STATE(1269), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(1409), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(320), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1339), 16, + 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, + [23937] = 25, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47101,35 +47175,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1409), 1, + ACTIONS(1347), 1, anon_sym_COLON, - STATE(976), 1, + ACTIONS(1411), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1860), 1, sym_expression, - STATE(2777), 1, + STATE(2502), 1, + sym_slice, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1407), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47137,12 +47212,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47150,7 +47225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47167,14 +47242,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23951] = 25, - ACTIONS(801), 1, + [24044] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47182,36 +47257,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1411), 1, + ACTIONS(1413), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47219,12 +47294,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47232,7 +47307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47249,63 +47324,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24058] = 24, - ACTIONS(67), 1, + [24151] = 25, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(865), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + ACTIONS(1415), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(969), 1, + STATE(1069), 1, sym_string, - STATE(1119), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1860), 1, sym_expression, - STATE(2585), 1, - sym_expression_list, - STATE(2751), 1, + STATE(2502), 1, + sym_slice, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1413), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47313,83 +47389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24163] = 19, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1051), 1, - sym_primary_expression, - STATE(1342), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(1415), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(323), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1268), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47407,13 +47407,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [24258] = 25, - ACTIONS(801), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47421,36 +47421,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1417), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47458,12 +47458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47471,7 +47471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47489,13 +47489,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [24365] = 25, - ACTIONS(801), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47503,36 +47503,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1419), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47540,12 +47540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47553,7 +47553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47571,13 +47571,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [24472] = 25, - ACTIONS(801), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47585,36 +47585,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1421), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47622,12 +47622,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47635,7 +47635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47653,13 +47653,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [24579] = 25, - ACTIONS(801), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47667,36 +47667,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1423), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2502), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47704,12 +47704,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47717,7 +47717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47735,13 +47735,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [24686] = 24, - ACTIONS(801), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47749,34 +47749,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1820), 1, + STATE(1812), 1, sym_expression, - STATE(2414), 1, + STATE(2353), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47784,12 +47784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47797,7 +47797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47815,13 +47815,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [24790] = 24, - ACTIONS(801), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47829,34 +47829,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1793), 1, sym_expression, - STATE(2503), 1, + STATE(2466), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47864,12 +47864,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47877,7 +47877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47894,61 +47894,141 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24894] = 23, - ACTIONS(755), 1, + [24894] = 24, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1425), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(1427), 1, + anon_sym_STAR, + STATE(968), 1, + sym_primary_expression, + STATE(1033), 1, + sym_string, + STATE(1269), 1, + sym_list_splat_pattern, + STATE(1909), 1, + sym_expression, + STATE(2256), 1, + sym_with_item, + STATE(2673), 1, + sym_with_clause, + STATE(2711), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(296), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1720), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1339), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24998] = 23, + ACTIONS(733), 1, + anon_sym_LPAREN, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1051), 1, + ACTIONS(1131), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1283), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1287), 1, anon_sym_lambda, - STATE(963), 1, + STATE(965), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1003), 1, sym_string, - STATE(1258), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1830), 1, + STATE(1792), 1, sym_expression, - STATE(2771), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - STATE(2106), 2, + STATE(2042), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(767), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47956,7 +48036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47973,61 +48053,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24996] = 23, - ACTIONS(801), 1, + [25100] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1289), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1429), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1025), 1, sym_string, - STATE(1437), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1914), 1, + STATE(1894), 1, sym_expression, - STATE(2777), 1, + STATE(2548), 1, + sym_with_item, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - ACTIONS(1425), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48035,7 +48116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48052,14 +48133,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25098] = 23, - ACTIONS(801), 1, + [25204] = 24, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -48067,33 +48148,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1956), 1, + STATE(1779), 1, sym_expression, - STATE(2777), 1, + STATE(2359), 1, + sym_slice, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1265), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -48101,12 +48183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48114,7 +48196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48131,61 +48213,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25200] = 23, - ACTIONS(67), 1, + [25308] = 23, + ACTIONS(733), 1, + anon_sym_LPAREN, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(1131), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(865), 1, + ACTIONS(1287), 1, + anon_sym_lambda, + STATE(965), 1, sym_primary_expression, - STATE(969), 1, + STATE(1003), 1, sym_string, - STATE(1119), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1803), 1, sym_expression, - STATE(2751), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(1427), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(2034), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48193,7 +48275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48210,61 +48292,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25302] = 23, - ACTIONS(67), 1, + [25410] = 24, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1425), 1, + anon_sym_LPAREN, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(865), 1, + STATE(968), 1, sym_primary_expression, - STATE(969), 1, + STATE(1033), 1, sym_string, - STATE(1119), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1909), 1, sym_expression, - STATE(2751), 1, + STATE(2256), 1, + sym_with_item, + STATE(2680), 1, + sym_with_clause, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(1429), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48272,7 +48355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48289,62 +48372,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25404] = 24, - ACTIONS(310), 1, + [25514] = 24, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(970), 1, + ACTIONS(1431), 1, + anon_sym_COLON, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1909), 1, sym_expression, - STATE(2269), 1, + STATE(2585), 1, sym_with_item, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, - STATE(2776), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48352,7 +48435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48369,65 +48452,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25508] = 19, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [25618] = 23, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(813), 1, + anon_sym_LBRACE, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(835), 1, + anon_sym_not, + ACTIONS(1147), 1, + sym_identifier, + ACTIONS(1157), 1, anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1051), 1, + ACTIONS(1257), 1, + anon_sym_STAR, + ACTIONS(1259), 1, + anon_sym_lambda, + STATE(964), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1022), 1, + sym_string, + STATE(1307), 1, sym_list_splat_pattern, + STATE(1804), 1, + sym_expression, + STATE(2690), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(321), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(663), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(676), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + STATE(2074), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(799), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1268), 16, + STATE(1776), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48444,61 +48531,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25602] = 23, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [25720] = 24, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(859), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(865), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1425), 1, + anon_sym_LPAREN, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(1289), 1, - anon_sym_lambda, - STATE(912), 1, + STATE(968), 1, sym_primary_expression, - STATE(971), 1, + STATE(1033), 1, sym_string, - STATE(1203), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(1909), 1, sym_expression, - STATE(2683), 1, + STATE(2256), 1, + sym_with_item, + STATE(2676), 1, + sym_with_clause, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, - sym_ellipsis, - sym_float, - ACTIONS(853), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - STATE(1988), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(743), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48506,7 +48594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48523,61 +48611,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25704] = 23, - ACTIONS(67), 1, + [25824] = 23, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1289), 1, + sym_identifier, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(865), 1, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1025), 1, sym_string, - STATE(1119), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1877), 1, + STATE(1941), 1, sym_expression, - STATE(2751), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - ACTIONS(1435), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(1297), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48585,7 +48673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48602,7 +48690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25806] = 23, + [25926] = 24, ACTIONS(779), 1, anon_sym_LPAREN, ACTIONS(787), 1, @@ -48611,24 +48699,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(797), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1169), 1, + ACTIONS(989), 1, + anon_sym_lambda, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1273), 1, - anon_sym_lambda, - STATE(965), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(979), 1, sym_primary_expression, - STATE(996), 1, + STATE(1069), 1, sym_string, - STATE(1360), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1814), 1, sym_expression, + STATE(2395), 1, + sym_slice, STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, @@ -48637,17 +48729,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - STATE(1986), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -48656,7 +48745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48664,7 +48753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48681,61 +48770,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25908] = 23, - ACTIONS(755), 1, + [26030] = 23, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1051), 1, + ACTIONS(1131), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1283), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1287), 1, anon_sym_lambda, - STATE(963), 1, + STATE(965), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1003), 1, sym_string, - STATE(1258), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1823), 1, sym_expression, - STATE(2771), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - STATE(1962), 2, + STATE(1916), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(767), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48743,7 +48832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48760,65 +48849,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26010] = 19, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [26132] = 23, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1051), 1, + ACTIONS(1283), 1, + anon_sym_STAR, + ACTIONS(1287), 1, + anon_sym_lambda, + STATE(965), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1003), 1, + sym_string, + STATE(1264), 1, sym_list_splat_pattern, + STATE(1823), 1, + sym_expression, + STATE(2614), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(319), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(321), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + STATE(1990), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(731), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1268), 16, + STATE(1796), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48835,28 +48928,103 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26104] = 20, - ACTIONS(302), 1, - anon_sym_in, - ACTIONS(310), 1, + [26234] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(319), 1, - anon_sym_COMMA, - ACTIONS(327), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(383), 1, + sym_identifier, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1051), 1, + ACTIONS(1317), 1, + anon_sym_STAR, + STATE(860), 1, + sym_primary_expression, + STATE(967), 1, + sym_string, + STATE(1118), 1, + sym_list_splat_pattern, + STATE(1781), 1, + sym_expression, + STATE(2775), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1433), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1659), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1130), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [26336] = 19, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, + anon_sym_STAR, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1107), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -48864,13 +49032,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(279), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(676), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + ACTIONS(1409), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -48878,7 +49049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, @@ -48894,7 +49065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48911,61 +49082,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26200] = 23, - ACTIONS(67), 1, + [26430] = 24, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(865), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(979), 1, sym_primary_expression, - STATE(969), 1, + STATE(1069), 1, sym_string, - STATE(1119), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1877), 1, + STATE(1860), 1, sym_expression, - STATE(2751), 1, + STATE(2502), 1, + sym_slice, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1437), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48973,7 +49145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48990,7 +49162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26302] = 23, + [26534] = 23, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -48999,25 +49171,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(819), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1147), 1, + sym_identifier, + ACTIONS(1157), 1, anon_sym_await, ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1333), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1259), 1, + anon_sym_lambda, + STATE(964), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1022), 1, sym_string, - STATE(1437), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1931), 1, + STATE(1804), 1, sym_expression, - STATE(2777), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -49025,17 +49197,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - ACTIONS(1407), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(1943), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -49044,7 +49216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49052,7 +49224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49069,69 +49241,140 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26404] = 23, - ACTIONS(733), 1, + [26636] = 19, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(672), 1, + anon_sym_STAR, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(682), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1107), 1, + sym_primary_expression, + STATE(1269), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(663), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1339), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [26730] = 19, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, - anon_sym_not, - ACTIONS(865), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, anon_sym_STAR, - ACTIONS(1289), 1, - anon_sym_lambda, - STATE(912), 1, - sym_primary_expression, - STATE(971), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + STATE(1033), 1, sym_string, - STATE(1203), 1, + STATE(1107), 1, + sym_primary_expression, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1824), 1, - sym_expression, - STATE(2683), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(316), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(676), 2, anon_sym_match, anon_sym_type, - STATE(1900), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(674), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(320), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1771), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1138), 16, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49148,61 +49391,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26506] = 23, - ACTIONS(711), 1, + [26824] = 23, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1131), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1139), 1, + anon_sym_await, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(1287), 1, + anon_sym_lambda, + STATE(965), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1003), 1, sym_string, - STATE(1388), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1949), 1, + STATE(1823), 1, sym_expression, - STATE(2638), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(1265), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(721), 3, + STATE(2018), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49210,7 +49453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49227,70 +49470,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26608] = 24, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [26926] = 20, + ACTIONS(294), 1, + anon_sym_in, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(316), 1, + anon_sym_COMMA, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, - sym_identifier, - ACTIONS(1315), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, anon_sym_STAR, - ACTIONS(1439), 1, - anon_sym_RPAREN, - STATE(967), 1, - sym_primary_expression, - STATE(1028), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + STATE(1033), 1, sym_string, - STATE(1388), 1, + STATE(1107), 1, + sym_primary_expression, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1987), 1, - sym_expression, - STATE(2583), 1, - sym_with_item, - STATE(2638), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(676), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(674), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(320), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1723), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1270), 16, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49307,7 +49546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26712] = 24, + [27022] = 23, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -49316,29 +49555,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(819), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1147), 1, + sym_identifier, + ACTIONS(1157), 1, anon_sym_await, ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1333), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(976), 1, + ACTIONS(1259), 1, + anon_sym_lambda, + STATE(964), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1022), 1, sym_string, - STATE(1437), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1795), 1, + STATE(1801), 1, sym_expression, - STATE(2461), 1, - sym_slice, - STATE(2777), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -49346,14 +49581,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, + STATE(2064), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -49362,7 +49600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49370,7 +49608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49387,61 +49625,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26816] = 23, - ACTIONS(733), 1, + [27124] = 23, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1147), 1, + sym_identifier, + ACTIONS(1157), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_lambda, - STATE(912), 1, + STATE(964), 1, sym_primary_expression, - STATE(971), 1, + STATE(1022), 1, sym_string, - STATE(1203), 1, + STATE(1307), 1, sym_list_splat_pattern, STATE(1804), 1, sym_expression, - STATE(2683), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - STATE(2090), 2, + STATE(1964), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49449,7 +49687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49466,62 +49704,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26918] = 24, - ACTIONS(310), 1, + [27226] = 24, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(987), 1, + anon_sym_not, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(970), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(979), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1069), 1, sym_string, - STATE(1342), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1806), 1, sym_expression, - STATE(2269), 1, - sym_with_item, - STATE(2767), 1, - sym_with_clause, - STATE(2775), 1, + STATE(2431), 1, + sym_slice, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(981), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(979), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49529,7 +49767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49546,14 +49784,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27022] = 23, - ACTIONS(801), 1, + [27330] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -49561,33 +49799,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1956), 1, + STATE(1989), 1, sym_expression, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1293), 2, + ACTIONS(1435), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -49595,12 +49833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49608,7 +49846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49625,7 +49863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27124] = 23, + [27432] = 24, ACTIONS(779), 1, anon_sym_LPAREN, ACTIONS(787), 1, @@ -49634,24 +49872,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(797), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1169), 1, + ACTIONS(989), 1, + anon_sym_lambda, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1273), 1, - anon_sym_lambda, - STATE(965), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(979), 1, sym_primary_expression, - STATE(996), 1, + STATE(1069), 1, sym_string, - STATE(1360), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1831), 1, + STATE(1797), 1, sym_expression, + STATE(2481), 1, + sym_slice, STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, @@ -49660,17 +49902,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - STATE(2048), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -49679,7 +49918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49687,7 +49926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49704,7 +49943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27226] = 23, + [27536] = 23, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -49721,17 +49960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(865), 1, + STATE(860), 1, sym_primary_expression, - STATE(969), 1, + STATE(967), 1, sym_string, - STATE(1119), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1877), 1, + STATE(1781), 1, sym_expression, - STATE(2751), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -49742,7 +49981,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(1441), 2, + ACTIONS(1437), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, @@ -49758,7 +49997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49766,7 +50005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49783,61 +50022,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27328] = 23, - ACTIONS(733), 1, + [27638] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(989), 1, + anon_sym_lambda, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1289), 1, - anon_sym_lambda, - STATE(912), 1, + STATE(979), 1, sym_primary_expression, - STATE(971), 1, + STATE(1069), 1, sym_string, - STATE(1203), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1895), 1, sym_expression, - STATE(2683), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - STATE(2104), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(1439), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49845,7 +50084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49862,14 +50101,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27430] = 23, - ACTIONS(801), 1, + [27740] = 24, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -49877,33 +50116,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1909), 1, + STATE(1834), 1, sym_expression, - STATE(2777), 1, + STATE(2269), 1, + sym_slice, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1443), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -49911,12 +50151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49924,7 +50164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49941,61 +50181,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27532] = 23, - ACTIONS(779), 1, + [27844] = 23, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(883), 1, - anon_sym_not, - ACTIONS(1159), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(859), 1, + anon_sym_not, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1249), 1, anon_sym_STAR, - ACTIONS(1273), 1, + ACTIONS(1255), 1, anon_sym_lambda, - STATE(965), 1, + STATE(904), 1, sym_primary_expression, - STATE(996), 1, + STATE(982), 1, sym_string, - STATE(1360), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1801), 1, + STATE(1789), 1, sym_expression, - STATE(2611), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1996), 2, + STATE(2032), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50003,7 +50243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50020,61 +50260,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27634] = 23, - ACTIONS(67), 1, + [27946] = 24, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(865), 1, + ACTIONS(1441), 1, + anon_sym_COLON, + STATE(968), 1, sym_primary_expression, - STATE(969), 1, + STATE(1033), 1, sym_string, - STATE(1119), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1877), 1, + STATE(1909), 1, sym_expression, - STATE(2751), 1, + STATE(2585), 1, + sym_with_item, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(1445), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50082,7 +50323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50099,65 +50340,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27736] = 19, - ACTIONS(310), 1, + [28050] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(383), 1, + sym_identifier, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1051), 1, + ACTIONS(1317), 1, + anon_sym_STAR, + STATE(860), 1, sym_primary_expression, - STATE(1342), 1, + STATE(967), 1, + sym_string, + STATE(1118), 1, sym_list_splat_pattern, + STATE(1849), 1, + sym_expression, + STATE(2775), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(1415), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(315), 3, + ACTIONS(1443), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 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(1268), 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(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50174,62 +50419,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27830] = 24, - ACTIONS(801), 1, + [28152] = 23, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1249), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(976), 1, + ACTIONS(1255), 1, + anon_sym_lambda, + STATE(904), 1, sym_primary_expression, - STATE(1107), 1, + STATE(982), 1, sym_string, - STATE(1437), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1780), 1, sym_expression, - STATE(2455), 1, - sym_slice, - STATE(2777), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + STATE(2057), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50237,7 +50481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50254,61 +50498,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27934] = 23, - ACTIONS(733), 1, + [28254] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1287), 1, - anon_sym_STAR, ACTIONS(1289), 1, - anon_sym_lambda, - STATE(912), 1, + sym_identifier, + ACTIONS(1301), 1, + anon_sym_STAR, + STATE(963), 1, sym_primary_expression, - STATE(971), 1, + STATE(1025), 1, sym_string, - STATE(1203), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(1941), 1, sym_expression, - STATE(2683), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - STATE(2093), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(1261), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50316,7 +50560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50333,61 +50577,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28036] = 23, - ACTIONS(711), 1, + [28356] = 23, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1147), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1157), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(1259), 1, + anon_sym_lambda, + STATE(964), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1022), 1, sym_string, - STATE(1388), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1949), 1, + STATE(1805), 1, sym_expression, - STATE(2638), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - ACTIONS(1293), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(721), 3, + STATE(2087), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50395,7 +50639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50412,14 +50656,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28138] = 24, - ACTIONS(801), 1, + [28458] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -50427,34 +50671,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1913), 1, sym_expression, - STATE(2330), 1, - sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1261), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -50462,12 +50705,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50475,7 +50718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50492,62 +50735,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28242] = 24, - ACTIONS(310), 1, + [28560] = 23, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(987), 1, + anon_sym_not, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1447), 1, - anon_sym_COLON, - STATE(970), 1, + STATE(979), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1069), 1, sym_string, - STATE(1342), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1942), 1, sym_expression, - STATE(2554), 1, - sym_with_item, - STATE(2775), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(981), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1401), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(979), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50555,7 +50797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50572,14 +50814,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28346] = 24, - ACTIONS(801), 1, + [28662] = 24, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -50587,34 +50829,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1784), 1, + STATE(1809), 1, sym_expression, - STATE(2469), 1, + STATE(2432), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -50622,12 +50864,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50635,7 +50877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50652,65 +50894,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28450] = 19, - ACTIONS(310), 1, + [28766] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(383), 1, + sym_identifier, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1051), 1, + ACTIONS(1317), 1, + anon_sym_STAR, + STATE(860), 1, sym_primary_expression, - STATE(1342), 1, + STATE(967), 1, + sym_string, + STATE(1118), 1, sym_list_splat_pattern, + STATE(1849), 1, + sym_expression, + STATE(2775), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(319), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + ACTIONS(1445), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 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(1268), 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(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50727,14 +50973,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28544] = 24, - ACTIONS(801), 1, + [28868] = 24, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -50742,34 +50988,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(1800), 1, sym_expression, - STATE(2277), 1, + STATE(2364), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -50777,12 +51023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50790,7 +51036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50807,14 +51053,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28648] = 24, - ACTIONS(801), 1, + [28972] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -50822,34 +51068,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1797), 1, + STATE(1913), 1, sym_expression, - STATE(2320), 1, - sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1297), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -50857,12 +51102,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50870,7 +51115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50887,14 +51132,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28752] = 24, - ACTIONS(801), 1, + [29074] = 24, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -50902,34 +51147,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1343), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1069), 1, sym_string, - STATE(1437), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1800), 1, + STATE(1824), 1, sym_expression, - STATE(2358), 1, + STATE(2373), 1, sym_slice, - STATE(2777), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -50937,12 +51182,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50950,7 +51195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50967,62 +51212,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28856] = 24, - ACTIONS(801), 1, + [29178] = 23, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1249), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(976), 1, + ACTIONS(1255), 1, + anon_sym_lambda, + STATE(904), 1, sym_primary_expression, - STATE(1107), 1, + STATE(982), 1, sym_string, - STATE(1437), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1788), 1, sym_expression, - STATE(2391), 1, - sym_slice, - STATE(2777), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + STATE(2027), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51030,7 +51274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51047,62 +51291,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28960] = 24, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [29280] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1317), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(976), 1, + STATE(860), 1, sym_primary_expression, - STATE(1107), 1, + STATE(967), 1, sym_string, - STATE(1437), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1849), 1, sym_expression, - STATE(2408), 1, - sym_slice, - STATE(2777), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1447), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51110,7 +51353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51127,61 +51370,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29064] = 23, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [29382] = 24, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(1051), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1061), 1, - anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1425), 1, + anon_sym_LPAREN, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(963), 1, + STATE(968), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1033), 1, sym_string, - STATE(1258), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1909), 1, sym_expression, - STATE(2771), 1, + STATE(2256), 1, + sym_with_item, + STATE(2711), 1, sym__named_expression_lhs, + STATE(2749), 1, + sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1059), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - STATE(2020), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51189,7 +51433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51206,8 +51450,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29166] = 23, - ACTIONS(755), 1, + [29486] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, anon_sym_LBRACK, @@ -51215,25 +51459,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1289), 1, + sym_identifier, + ACTIONS(1301), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, + ACTIONS(1449), 1, + anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1894), 1, sym_expression, - STATE(2771), 1, + STATE(2548), 1, + sym_with_item, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -51241,26 +51489,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - STATE(2105), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51268,7 +51513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51285,62 +51530,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29268] = 24, - ACTIONS(310), 1, + [29590] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1431), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(970), 1, + STATE(860), 1, sym_primary_expression, - STATE(1010), 1, + STATE(967), 1, sym_string, - STATE(1342), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1849), 1, sym_expression, - STATE(2269), 1, - sym_with_item, - STATE(2672), 1, - sym_with_clause, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1451), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51348,7 +51592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51365,62 +51609,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29372] = 24, - ACTIONS(310), 1, + [29692] = 23, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(865), 1, + anon_sym_await, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(970), 1, + ACTIONS(1255), 1, + anon_sym_lambda, + STATE(904), 1, sym_primary_expression, - STATE(1010), 1, + STATE(982), 1, sym_string, - STATE(1342), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1789), 1, sym_expression, - STATE(2269), 1, - sym_with_item, - STATE(2679), 1, - sym_with_clause, - STATE(2775), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(853), 2, + anon_sym_match, + anon_sym_type, + STATE(1962), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(851), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51428,7 +51671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51445,61 +51688,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29476] = 23, - ACTIONS(779), 1, + [29794] = 23, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(883), 1, - anon_sym_not, - ACTIONS(1159), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(859), 1, + anon_sym_not, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1249), 1, anon_sym_STAR, - ACTIONS(1273), 1, + ACTIONS(1255), 1, anon_sym_lambda, - STATE(965), 1, + STATE(904), 1, sym_primary_expression, - STATE(996), 1, + STATE(982), 1, sym_string, - STATE(1360), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1789), 1, sym_expression, - STATE(2611), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1998), 2, + STATE(1978), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51507,7 +51750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51524,69 +51767,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29578] = 23, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [29896] = 19, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(963), 1, - sym_primary_expression, - STATE(1015), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + STATE(1033), 1, sym_string, - STATE(1258), 1, + STATE(1107), 1, + sym_primary_expression, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1783), 1, - sym_expression, - STATE(2771), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(316), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(676), 2, anon_sym_match, anon_sym_type, - STATE(1899), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(767), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(674), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(320), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1806), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1367), 16, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51603,61 +51842,125 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29680] = 23, - ACTIONS(779), 1, + [29990] = 10, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(1453), 1, + anon_sym_for, + ACTIONS(1455), 1, + anon_sym_with, + ACTIONS(1457), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(294), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(316), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(279), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(277), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(787), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(791), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [30065] = 23, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(883), 1, - anon_sym_not, - ACTIONS(1159), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1169), 1, - anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(1273), 1, - anon_sym_lambda, - STATE(965), 1, + STATE(968), 1, sym_primary_expression, - STATE(996), 1, + STATE(1033), 1, sym_string, - STATE(1360), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1909), 1, sym_expression, - STATE(2611), 1, + STATE(2585), 1, + sym_with_item, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, - sym_ellipsis, - sym_float, - ACTIONS(1165), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - STATE(1901), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(789), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51665,7 +51968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51682,62 +51985,203 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29782] = 24, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [30166] = 23, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(1449), 1, - anon_sym_RPAREN, - STATE(967), 1, - sym_primary_expression, - STATE(1028), 1, + ACTIONS(1459), 1, + anon_sym_COLON, + STATE(968), 1, + sym_primary_expression, + STATE(1033), 1, sym_string, - STATE(1388), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1987), 1, + STATE(1931), 1, sym_expression, - STATE(2583), 1, - sym_with_item, - STATE(2638), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1075), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1720), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1339), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [30267] = 10, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(1461), 1, + anon_sym_for, + ACTIONS(1463), 1, + anon_sym_with, + ACTIONS(1465), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(294), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(316), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(279), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(277), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [30342] = 23, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, + anon_sym_STAR, + ACTIONS(1467), 1, + anon_sym_COLON, + STATE(968), 1, + sym_primary_expression, + STATE(1033), 1, + sym_string, + STATE(1269), 1, + sym_list_splat_pattern, + STATE(1931), 1, + sym_expression, + STATE(2711), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(296), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51745,7 +52189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51762,14 +52206,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29886] = 24, - ACTIONS(310), 1, + [30443] = 23, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -51777,47 +52221,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(1451), 1, + ACTIONS(1469), 1, anon_sym_COLON, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1885), 1, sym_expression, - STATE(2554), 1, - sym_with_item, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51825,7 +52267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51842,23 +52284,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29990] = 10, + [30544] = 11, ACTIONS(284), 1, anon_sym_COMMA, ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(1453), 1, + ACTIONS(294), 1, + anon_sym_EQ, + ACTIONS(326), 1, + anon_sym_COLON, + ACTIONS(1471), 1, sym_identifier, - ACTIONS(1455), 1, + ACTIONS(1473), 1, sym_string_start, - STATE(2385), 1, + STATE(2261), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - anon_sym_COLON, - anon_sym_EQ, ACTIONS(277), 10, sym__newline, anon_sym_SEMI, @@ -51870,7 +52313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(319), 13, + ACTIONS(316), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51907,14 +52350,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_LT, anon_sym_GT, - [30065] = 23, - ACTIONS(310), 1, + [30621] = 23, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -51922,45 +52365,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1851), 1, sym_expression, - STATE(2697), 1, + STATE(2610), 1, sym_expression_list, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51968,7 +52411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51985,125 +52428,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30166] = 10, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(1457), 1, - anon_sym_for, - ACTIONS(1459), 1, - anon_sym_with, - ACTIONS(1461), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(319), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [30241] = 23, - ACTIONS(310), 1, + [30722] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(970), 1, + STATE(860), 1, sym_primary_expression, - STATE(1010), 1, + STATE(967), 1, sym_string, - STATE(1342), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1831), 1, sym_expression, - STATE(2554), 1, - sym_with_item, + STATE(2514), 1, + sym_expression_list, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52111,7 +52489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52128,14 +52506,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30342] = 23, - ACTIONS(310), 1, + [30823] = 23, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -52143,45 +52521,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1293), 1, - anon_sym_COLON, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(970), 1, + ACTIONS(1475), 1, + anon_sym_COLON, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1911), 1, + STATE(1912), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52189,7 +52567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52206,60 +52584,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30443] = 23, - ACTIONS(310), 1, + [30924] = 23, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1289), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1265), 1, - anon_sym_COLON, - ACTIONS(1433), 1, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(970), 1, + STATE(963), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1025), 1, sym_string, - STATE(1342), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1911), 1, + STATE(1894), 1, sym_expression, - STATE(2775), 1, + STATE(2548), 1, + sym_with_item, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1031), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1029), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52267,7 +52645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52284,24 +52662,35 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30544] = 10, + [31025] = 10, ACTIONS(284), 1, anon_sym_COMMA, ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(1463), 1, - anon_sym_for, - ACTIONS(1465), 1, - anon_sym_with, - ACTIONS(1467), 1, - anon_sym_def, + ACTIONS(1471), 1, + sym_identifier, + ACTIONS(1473), 1, + sym_string_start, + STATE(2261), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(294), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(319), 13, + ACTIONS(277), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(316), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52315,48 +52704,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(279), 15, + ACTIONS(279), 22, + anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + anon_sym_is, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [30619] = 23, - ACTIONS(310), 1, + [31100] = 23, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -52364,45 +52742,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(1469), 1, + ACTIONS(1477), 1, anon_sym_COLON, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1931), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52410,7 +52788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52427,14 +52805,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30720] = 23, - ACTIONS(310), 1, + [31201] = 23, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -52442,45 +52820,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1863), 1, + STATE(1869), 1, sym_expression, - STATE(2712), 1, - sym_expression_list, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, + STATE(2728), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52488,7 +52866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52505,14 +52883,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30821] = 23, - ACTIONS(310), 1, + [31302] = 23, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -52520,45 +52898,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(1471), 1, - anon_sym_COLON, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1857), 1, sym_expression, - STATE(2775), 1, + STATE(2698), 1, + sym_expression_list, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52566,7 +52944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52583,60 +52961,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30922] = 23, - ACTIONS(67), 1, + [31403] = 23, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_COLON, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(865), 1, + STATE(968), 1, sym_primary_expression, - STATE(969), 1, + STATE(1033), 1, sym_string, - STATE(1119), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1904), 1, sym_expression, - STATE(2595), 1, - sym_expression_list, - STATE(2751), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52644,7 +53022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52661,60 +53039,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31023] = 23, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [31504] = 23, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(967), 1, + STATE(968), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1033), 1, sym_string, - STATE(1388), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1987), 1, + STATE(1871), 1, sym_expression, - STATE(2583), 1, - sym_with_item, - STATE(2638), 1, + STATE(2689), 1, + sym_expression_list, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1075), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52722,7 +53100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52739,14 +53117,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31124] = 23, - ACTIONS(310), 1, + [31605] = 23, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -52754,45 +53132,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(1473), 1, + ACTIONS(1479), 1, anon_sym_COLON, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1931), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52800,7 +53178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52817,14 +53195,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31225] = 23, - ACTIONS(310), 1, + [31706] = 23, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -52832,45 +53210,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1261), 1, + anon_sym_COLON, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1839), 1, + STATE(1904), 1, sym_expression, - STATE(2641), 1, - sym_expression_list, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52878,7 +53256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52895,60 +53273,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31326] = 23, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + [31807] = 22, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, + anon_sym_await, + ACTIONS(1283), 1, anon_sym_STAR, - ACTIONS(1475), 1, - anon_sym_COLON, - STATE(970), 1, + STATE(965), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1003), 1, sym_string, - STATE(1342), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1967), 1, + STATE(1777), 1, sym_expression, - STATE(2775), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1137), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1135), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52956,7 +53332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52973,126 +53349,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31427] = 11, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_COLON, - ACTIONS(302), 1, - anon_sym_EQ, - ACTIONS(1453), 1, - sym_identifier, - ACTIONS(1455), 1, + [31905] = 22, + ACTIONS(686), 1, + anon_sym_LPAREN, + ACTIONS(694), 1, + anon_sym_LBRACK, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, sym_string_start, - STATE(2385), 1, + ACTIONS(1003), 1, + anon_sym_STAR, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1013), 1, + anon_sym_lambda, + ACTIONS(1107), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_await, + STATE(946), 1, + sym_primary_expression, + STATE(981), 1, sym_string, + STATE(1183), 1, + sym_list_splat_pattern, + STATE(1917), 1, + sym_expression, + STATE(2746), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(319), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(279), 22, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(1115), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(696), 3, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT, - anon_sym_GT, - [31504] = 23, - ACTIONS(310), 1, + anon_sym_TILDE, + ACTIONS(1113), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(684), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1762), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1208), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [32003] = 22, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(861), 1, + anon_sym_lambda, + ACTIONS(865), 1, + anon_sym_await, + ACTIONS(1249), 1, anon_sym_STAR, - ACTIONS(1477), 1, - anon_sym_COLON, - STATE(970), 1, + STATE(904), 1, sym_primary_expression, - STATE(1010), 1, + STATE(982), 1, sym_string, - STATE(1342), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1747), 1, sym_expression, - STATE(2775), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(853), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(851), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53100,7 +53484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53117,60 +53501,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31605] = 23, - ACTIONS(310), 1, + [32101] = 22, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(861), 1, + anon_sym_lambda, + ACTIONS(865), 1, + anon_sym_await, + ACTIONS(1249), 1, anon_sym_STAR, - ACTIONS(1479), 1, - anon_sym_COLON, - STATE(970), 1, + STATE(904), 1, sym_primary_expression, - STATE(1010), 1, + STATE(982), 1, sym_string, - STATE(1342), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1947), 1, + STATE(1745), 1, sym_expression, - STATE(2775), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(853), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(721), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(709), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1768), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1171), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [32199] = 22, + ACTIONS(686), 1, + anon_sym_LPAREN, + ACTIONS(694), 1, + anon_sym_LBRACK, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_STAR, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1013), 1, + anon_sym_lambda, + ACTIONS(1107), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_await, + STATE(946), 1, + sym_primary_expression, + STATE(981), 1, + sym_string, + STATE(1183), 1, + sym_list_splat_pattern, + STATE(1754), 1, + sym_expression, + STATE(2746), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(1115), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1113), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53178,7 +53636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53195,14 +53653,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31706] = 23, - ACTIONS(310), 1, + [32297] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -53210,45 +53668,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1857), 1, + STATE(2021), 1, sym_expression, - STATE(2688), 1, - sym_expression_list, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53256,7 +53712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53273,14 +53729,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31807] = 22, - ACTIONS(310), 1, + [32395] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -53288,43 +53744,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1734), 1, + STATE(1719), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53332,7 +53788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53349,58 +53805,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31905] = 22, - ACTIONS(779), 1, + [32493] = 22, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1169), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(965), 1, + STATE(904), 1, sym_primary_expression, - STATE(996), 1, + STATE(982), 1, sym_string, - STATE(1360), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1821), 1, + STATE(1750), 1, sym_expression, - STATE(2611), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53408,7 +53864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53425,58 +53881,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32003] = 22, - ACTIONS(779), 1, + [32591] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1289), 1, + sym_identifier, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(965), 1, + STATE(963), 1, sym_primary_expression, - STATE(996), 1, + STATE(1025), 1, sym_string, - STATE(1360), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1823), 1, + STATE(1979), 1, sym_expression, - STATE(2611), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53484,7 +53940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53501,58 +53957,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32101] = 22, - ACTIONS(779), 1, + [32689] = 22, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1169), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(965), 1, + STATE(904), 1, sym_primary_expression, - STATE(996), 1, + STATE(982), 1, sym_string, - STATE(1360), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1825), 1, + STATE(1751), 1, sym_expression, - STATE(2611), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53560,7 +54016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53577,58 +54033,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32199] = 22, - ACTIONS(779), 1, + [32787] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1289), 1, + sym_identifier, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(965), 1, + STATE(963), 1, sym_primary_expression, - STATE(996), 1, + STATE(1025), 1, sym_string, - STATE(1360), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1826), 1, + STATE(1734), 1, sym_expression, - STATE(2611), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53636,7 +54092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53653,184 +54109,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32297] = 9, - ACTIONS(1485), 1, - anon_sym_else, - ACTIONS(1487), 1, - anon_sym_except, - ACTIONS(1489), 1, - anon_sym_finally, - STATE(705), 1, - sym_else_clause, - STATE(747), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(622), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1481), 12, + [32885] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(383), 1, + sym_identifier, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(657), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1317), 1, + anon_sym_STAR, + STATE(860), 1, + sym_primary_expression, + STATE(967), 1, + sym_string, + STATE(1118), 1, + sym_list_splat_pattern, + STATE(1849), 1, + sym_expression, + STATE(2775), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1483), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32369] = 9, - ACTIONS(1485), 1, - anon_sym_else, - ACTIONS(1489), 1, - anon_sym_finally, - ACTIONS(1491), 1, - anon_sym_except_STAR, - STATE(705), 1, - sym_else_clause, - STATE(747), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(623), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1481), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1483), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32441] = 22, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, - anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(883), 1, - anon_sym_not, - ACTIONS(885), 1, - anon_sym_lambda, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1169), 1, - anon_sym_await, - ACTIONS(1267), 1, - anon_sym_STAR, - STATE(965), 1, - sym_primary_expression, - STATE(996), 1, - sym_string, - STATE(1360), 1, - sym_list_splat_pattern, - STATE(1787), 1, - sym_expression, - STATE(2611), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(793), 2, - sym_ellipsis, - sym_float, - ACTIONS(1165), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(789), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53838,7 +54168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53855,58 +54185,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32539] = 22, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [32983] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(883), 1, - anon_sym_not, - ACTIONS(885), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1169), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(965), 1, + STATE(968), 1, sym_primary_expression, - STATE(996), 1, + STATE(1033), 1, sym_string, - STATE(1360), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1816), 1, + STATE(2037), 1, sym_expression, - STATE(2611), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, - sym_ellipsis, - sym_float, - ACTIONS(1165), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53914,7 +54244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53931,58 +54261,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32637] = 22, - ACTIONS(779), 1, + [33081] = 22, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1169), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(965), 1, + STATE(904), 1, sym_primary_expression, - STATE(996), 1, + STATE(982), 1, sym_string, - STATE(1360), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1777), 1, + STATE(1763), 1, sym_expression, - STATE(2611), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53990,7 +54320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54007,14 +54337,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32735] = 22, - ACTIONS(733), 1, + [33179] = 22, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(729), 1, sym_string_start, ACTIONS(843), 1, sym_identifier, @@ -54024,28 +54354,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(865), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(912), 1, + STATE(904), 1, sym_primary_expression, - STATE(971), 1, + STATE(982), 1, sym_string, - STATE(1203), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1753), 1, sym_expression, - STATE(2683), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -54053,12 +54383,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54066,7 +54396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54083,14 +54413,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32833] = 22, - ACTIONS(733), 1, + [33277] = 22, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(729), 1, sym_string_start, ACTIONS(843), 1, sym_identifier, @@ -54100,28 +54430,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(865), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(912), 1, + STATE(904), 1, sym_primary_expression, - STATE(971), 1, + STATE(982), 1, sym_string, - STATE(1203), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1841), 1, sym_expression, - STATE(2683), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -54129,12 +54459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54142,7 +54472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54159,58 +54489,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32931] = 22, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [33375] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(751), 1, - sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, + sym_identifier, + ACTIONS(406), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(912), 1, + STATE(860), 1, sym_primary_expression, - STATE(971), 1, + STATE(967), 1, sym_string, - STATE(1203), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1753), 1, + STATE(1828), 1, sym_expression, - STATE(2683), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54218,7 +54548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54235,58 +54565,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33029] = 22, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [33473] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(859), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(861), 1, - anon_sym_lambda, - ACTIONS(865), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(912), 1, + STATE(968), 1, sym_primary_expression, - STATE(971), 1, + STATE(1033), 1, sym_string, - STATE(1203), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1754), 1, + STATE(1904), 1, sym_expression, - STATE(2683), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, - sym_ellipsis, - sym_float, - ACTIONS(853), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54294,7 +54624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54311,58 +54641,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33127] = 22, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [33571] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(859), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(861), 1, - anon_sym_lambda, - ACTIONS(865), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(912), 1, + STATE(968), 1, sym_primary_expression, - STATE(971), 1, + STATE(1033), 1, sym_string, - STATE(1203), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1774), 1, + STATE(1730), 1, sym_expression, - STATE(2683), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, - sym_ellipsis, - sym_float, - ACTIONS(853), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54370,7 +54700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54387,49 +54717,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33225] = 22, + [33669] = 22, ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(912), 1, + STATE(965), 1, sym_primary_expression, - STATE(971), 1, + STATE(1003), 1, sym_string, - STATE(1203), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1758), 1, + STATE(1821), 1, sym_expression, - STATE(2683), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -54438,7 +54768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54446,7 +54776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54463,49 +54793,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33323] = 22, + [33767] = 22, ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(912), 1, + STATE(965), 1, sym_primary_expression, - STATE(971), 1, + STATE(1003), 1, sym_string, - STATE(1203), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1759), 1, + STATE(1819), 1, sym_expression, - STATE(2683), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -54514,7 +54844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54522,7 +54852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54539,58 +54869,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33421] = 22, - ACTIONS(67), 1, + [33865] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(865), 1, + STATE(968), 1, sym_primary_expression, - STATE(969), 1, + STATE(1033), 1, sym_string, - STATE(1119), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1733), 1, sym_expression, - STATE(2751), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54598,7 +54928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54615,7 +54945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33519] = 22, + [33963] = 22, ACTIONS(686), 1, anon_sym_LPAREN, ACTIONS(694), 1, @@ -54624,25 +54954,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(704), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1003), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1013), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(1107), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(1117), 1, anon_sym_await, - STATE(909), 1, + STATE(946), 1, sym_primary_expression, - STATE(975), 1, + STATE(981), 1, sym_string, - STATE(1214), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1755), 1, sym_expression, - STATE(2773), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -54650,14 +54980,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -54666,7 +54996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54674,7 +55004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54691,58 +55021,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33617] = 22, - ACTIONS(686), 1, + [34061] = 22, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(1147), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(1157), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1257), 1, + anon_sym_STAR, + STATE(964), 1, sym_primary_expression, - STATE(975), 1, + STATE(1022), 1, sym_string, - STATE(1214), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1741), 1, + STATE(1790), 1, sym_expression, - STATE(2773), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54750,7 +55080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54767,58 +55097,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33715] = 22, - ACTIONS(686), 1, + [34159] = 22, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(1131), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(1139), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1283), 1, + anon_sym_STAR, + STATE(965), 1, sym_primary_expression, - STATE(975), 1, + STATE(1003), 1, sym_string, - STATE(1214), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1742), 1, + STATE(1818), 1, sym_expression, - STATE(2773), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54826,7 +55156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54843,58 +55173,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33813] = 22, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [34257] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, - anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1105), 1, - anon_sym_await, - STATE(909), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, + anon_sym_STAR, + STATE(968), 1, sym_primary_expression, - STATE(975), 1, + STATE(1033), 1, sym_string, - STATE(1214), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1743), 1, + STATE(1931), 1, sym_expression, - STATE(2773), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, - sym_ellipsis, - sym_float, - ACTIONS(1103), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54902,7 +55232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54919,7 +55249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33911] = 22, + [34355] = 22, ACTIONS(686), 1, anon_sym_LPAREN, ACTIONS(694), 1, @@ -54928,25 +55258,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(704), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1003), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1013), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(1107), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(1117), 1, anon_sym_await, - STATE(909), 1, + STATE(946), 1, sym_primary_expression, - STATE(975), 1, + STATE(981), 1, sym_string, - STATE(1214), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1744), 1, + STATE(1758), 1, sym_expression, - STATE(2773), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -54954,14 +55284,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -54970,7 +55300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54978,7 +55308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54995,58 +55325,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34009] = 22, - ACTIONS(686), 1, + [34453] = 22, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(1131), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(1139), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1283), 1, + anon_sym_STAR, + STATE(965), 1, sym_primary_expression, - STATE(975), 1, + STATE(1003), 1, sym_string, - STATE(1214), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1815), 1, sym_expression, - STATE(2773), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55054,7 +55384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55071,58 +55401,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34107] = 22, - ACTIONS(686), 1, + [34551] = 22, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(1131), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(1139), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1283), 1, + anon_sym_STAR, + STATE(965), 1, sym_primary_expression, - STATE(975), 1, + STATE(1003), 1, sym_string, - STATE(1214), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1750), 1, + STATE(1829), 1, sym_expression, - STATE(2773), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55130,7 +55460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55147,58 +55477,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34205] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + [34649] = 22, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_STAR, - STATE(970), 1, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1013), 1, + anon_sym_lambda, + ACTIONS(1107), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_await, + STATE(946), 1, sym_primary_expression, - STATE(1010), 1, + STATE(981), 1, sym_string, - STATE(1342), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1721), 1, + STATE(1759), 1, sym_expression, - STATE(2775), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1115), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1113), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55206,7 +55536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55223,7 +55553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34303] = 22, + [34747] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -55240,17 +55570,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(865), 1, + STATE(860), 1, sym_primary_expression, - STATE(969), 1, + STATE(967), 1, sym_string, - STATE(1119), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1970), 1, + STATE(1662), 1, sym_expression, - STATE(2751), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -55274,7 +55604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55282,7 +55612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55299,58 +55629,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34401] = 22, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [34845] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(967), 1, + STATE(860), 1, sym_primary_expression, - STATE(1028), 1, + STATE(967), 1, sym_string, - STATE(1388), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1728), 1, + STATE(1665), 1, sym_expression, - STATE(2638), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55358,7 +55688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55375,58 +55705,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34499] = 22, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [34943] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(967), 1, + STATE(968), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1033), 1, sym_string, - STATE(1388), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1736), 1, + STATE(1994), 1, sym_expression, - STATE(2638), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1075), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55434,7 +55764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55451,58 +55781,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34597] = 22, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [35041] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(967), 1, + STATE(860), 1, sym_primary_expression, - STATE(1028), 1, + STATE(967), 1, sym_string, - STATE(1388), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1670), 1, sym_expression, - STATE(2638), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55510,7 +55840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55527,53 +55857,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34695] = 22, - ACTIONS(711), 1, + [35139] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1289), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1719), 1, + STATE(1970), 1, sym_expression, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -55586,7 +55916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55603,58 +55933,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34793] = 22, - ACTIONS(711), 1, + [35237] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(967), 1, + STATE(979), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1069), 1, sym_string, - STATE(1388), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1735), 1, + STATE(1744), 1, sym_expression, - STATE(2638), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55662,7 +55992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55679,58 +56009,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34891] = 22, - ACTIONS(711), 1, + [35335] = 22, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(1003), 1, + anon_sym_STAR, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1013), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1107), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(967), 1, + ACTIONS(1117), 1, + anon_sym_await, + STATE(946), 1, sym_primary_expression, - STATE(1028), 1, + STATE(981), 1, sym_string, - STATE(1388), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1722), 1, + STATE(1760), 1, sym_expression, - STATE(2638), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55738,7 +56068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55755,58 +56085,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34989] = 22, - ACTIONS(711), 1, + [35433] = 22, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1131), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1139), 1, + anon_sym_await, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1003), 1, sym_string, - STATE(1388), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1726), 1, + STATE(1791), 1, sym_expression, - STATE(2638), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55814,7 +56144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55831,58 +56161,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35087] = 22, - ACTIONS(310), 1, + [35531] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(970), 1, + STATE(860), 1, sym_primary_expression, - STATE(1010), 1, + STATE(967), 1, sym_string, - STATE(1342), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1984), 1, + STATE(1655), 1, sym_expression, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55890,7 +56220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55907,58 +56237,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35185] = 22, - ACTIONS(801), 1, + [35629] = 22, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1003), 1, + anon_sym_STAR, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1013), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1107), 1, sym_identifier, - ACTIONS(1333), 1, - anon_sym_STAR, - STATE(976), 1, + ACTIONS(1117), 1, + anon_sym_await, + STATE(946), 1, sym_primary_expression, - STATE(1107), 1, + STATE(981), 1, sym_string, - STATE(1437), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1760), 1, + STATE(1761), 1, sym_expression, - STATE(2777), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55966,7 +56296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55983,58 +56313,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35283] = 22, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [35727] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(976), 1, + STATE(968), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1033), 1, sym_string, - STATE(1437), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1718), 1, sym_expression, - STATE(2777), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56042,7 +56372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56059,58 +56389,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35381] = 22, - ACTIONS(801), 1, + [35825] = 22, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1003), 1, + anon_sym_STAR, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1013), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1107), 1, sym_identifier, - ACTIONS(1333), 1, - anon_sym_STAR, - STATE(976), 1, + ACTIONS(1117), 1, + anon_sym_await, + STATE(946), 1, sym_primary_expression, - STATE(1107), 1, + STATE(981), 1, sym_string, - STATE(1437), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1764), 1, + STATE(1774), 1, sym_expression, - STATE(2777), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56118,7 +56448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56135,58 +56465,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35479] = 22, - ACTIONS(801), 1, + [35923] = 22, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(976), 1, + STATE(904), 1, sym_primary_expression, - STATE(1107), 1, + STATE(982), 1, sym_string, - STATE(1437), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1765), 1, + STATE(1764), 1, sym_expression, - STATE(2777), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56194,7 +56524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56211,58 +56541,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35577] = 22, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [36021] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(976), 1, + STATE(968), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1033), 1, sym_string, - STATE(1437), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1766), 1, + STATE(1717), 1, sym_expression, - STATE(2777), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56270,7 +56600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56287,58 +56617,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35675] = 22, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [36119] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(976), 1, + STATE(860), 1, sym_primary_expression, - STATE(1107), 1, + STATE(967), 1, sym_string, - STATE(1437), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1772), 1, + STATE(1937), 1, sym_expression, - STATE(2777), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56346,7 +56676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56363,58 +56693,184 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35773] = 22, - ACTIONS(801), 1, + [36217] = 9, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1487), 1, + anon_sym_except, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(710), 1, + sym_else_clause, + STATE(800), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(610), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1481), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(809), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(813), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1483), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(1333), 1, - anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(1107), 1, - sym_string, - STATE(1437), 1, - sym_list_splat_pattern, - STATE(1773), 1, - sym_expression, - STATE(2777), 1, - sym__named_expression_lhs, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [36289] = 9, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1489), 1, + anon_sym_finally, + ACTIONS(1491), 1, + anon_sym_except_STAR, + STATE(710), 1, + sym_else_clause, + STATE(800), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(811), 3, + STATE(616), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1481), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + sym_ellipsis, + sym_float, + ACTIONS(1483), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, - anon_sym_exec, - ACTIONS(799), 4, - sym_integer, - sym_true, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [36361] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1039), 1, + anon_sym_await, + ACTIONS(1289), 1, + sym_identifier, + ACTIONS(1301), 1, + anon_sym_STAR, + STATE(963), 1, + sym_primary_expression, + STATE(1025), 1, + sym_string, + STATE(1413), 1, + sym_list_splat_pattern, + STATE(1983), 1, + sym_expression, + STATE(2691), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(771), 2, + sym_ellipsis, + sym_float, + ACTIONS(1031), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1029), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, + sym_integer, + sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56422,7 +56878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56439,58 +56895,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35871] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + [36459] = 22, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_STAR, - STATE(970), 1, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1013), 1, + anon_sym_lambda, + ACTIONS(1107), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_await, + STATE(946), 1, sym_primary_expression, - STATE(1010), 1, + STATE(981), 1, sym_string, - STATE(1342), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1725), 1, + STATE(1766), 1, sym_expression, - STATE(2775), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1115), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1113), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56498,7 +56954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56515,58 +56971,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35969] = 22, - ACTIONS(310), 1, + [36557] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(970), 1, + STATE(860), 1, sym_primary_expression, - STATE(1010), 1, + STATE(967), 1, sym_string, - STATE(1342), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1727), 1, + STATE(1668), 1, sym_expression, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56574,7 +57030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56591,58 +57047,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36067] = 22, - ACTIONS(67), 1, + [36655] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(865), 1, + STATE(968), 1, sym_primary_expression, - STATE(969), 1, + STATE(1033), 1, sym_string, - STATE(1119), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(2029), 1, sym_expression, - STATE(2751), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56650,7 +57106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56667,58 +57123,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36165] = 22, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [36753] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1051), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(406), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(963), 1, + STATE(860), 1, sym_primary_expression, - STATE(1015), 1, + STATE(967), 1, sym_string, - STATE(1258), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1781), 1, sym_expression, - STATE(2771), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56726,7 +57182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56743,7 +57199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36263] = 23, + [36851] = 22, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -56752,25 +57208,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(819), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1333), 1, - anon_sym_STAR, - ACTIONS(1493), 1, + ACTIONS(1147), 1, sym_identifier, - ACTIONS(1499), 1, + ACTIONS(1157), 1, anon_sym_await, - STATE(1008), 1, + ACTIONS(1257), 1, + anon_sym_STAR, + STATE(964), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1022), 1, sym_string, - STATE(1437), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1973), 1, + STATE(1786), 1, sym_expression, - STATE(2777), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -56778,17 +57234,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1497), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - STATE(1257), 2, - sym_attribute, - sym_subscript, ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1495), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -56797,7 +57250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56805,9 +57258,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 14, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -56820,58 +57275,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36363] = 22, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [36949] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(967), 1, + STATE(968), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1033), 1, sym_string, - STATE(1388), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1897), 1, + STATE(2005), 1, sym_expression, - STATE(2638), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1075), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56879,7 +57334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56896,58 +57351,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36461] = 22, - ACTIONS(67), 1, + [37047] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(865), 1, + STATE(968), 1, sym_primary_expression, - STATE(969), 1, + STATE(1033), 1, sym_string, - STATE(1119), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1664), 1, + STATE(2025), 1, sym_expression, - STATE(2751), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56955,7 +57410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56972,58 +57427,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36559] = 22, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [37145] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(406), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1317), 1, + anon_sym_STAR, + STATE(860), 1, sym_primary_expression, - STATE(975), 1, + STATE(967), 1, sym_string, - STATE(1214), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1978), 1, + STATE(1953), 1, sym_expression, - STATE(2773), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57031,7 +57486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57048,53 +57503,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36657] = 22, - ACTIONS(711), 1, + [37243] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1289), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1982), 1, + STATE(1738), 1, sym_expression, - STATE(2638), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -57107,7 +57562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57124,7 +57579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36755] = 22, + [37341] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -57141,17 +57596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(865), 1, + STATE(860), 1, sym_primary_expression, - STATE(969), 1, + STATE(967), 1, sym_string, - STATE(1119), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1927), 1, + STATE(1660), 1, sym_expression, - STATE(2751), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -57175,7 +57630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57183,7 +57638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57200,58 +57655,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36853] = 22, - ACTIONS(779), 1, + [37439] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1289), 1, + sym_identifier, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(965), 1, + STATE(963), 1, sym_primary_expression, - STATE(996), 1, + STATE(1025), 1, sym_string, - STATE(1360), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1882), 1, + STATE(1736), 1, sym_expression, - STATE(2611), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57259,7 +57714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57276,58 +57731,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36951] = 22, - ACTIONS(310), 1, + [37537] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1289), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(970), 1, + STATE(963), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1025), 1, sym_string, - STATE(1342), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1732), 1, sym_expression, - STATE(2775), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1031), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1029), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57335,7 +57790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57352,58 +57807,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37049] = 22, - ACTIONS(67), 1, + [37635] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1289), 1, + sym_identifier, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(865), 1, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1025), 1, sym_string, - STATE(1119), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1789), 1, + STATE(1729), 1, sym_expression, - STATE(2751), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57411,7 +57866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57428,14 +57883,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37147] = 22, - ACTIONS(310), 1, + [37733] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -57443,43 +57898,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(2014), 1, + STATE(2071), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57487,7 +57942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57504,58 +57959,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37245] = 22, - ACTIONS(310), 1, + [37831] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1289), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(970), 1, + STATE(963), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1025), 1, sym_string, - STATE(1342), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(2079), 1, + STATE(1727), 1, sym_expression, - STATE(2775), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1031), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1029), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57563,7 +58018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57580,58 +58035,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37343] = 22, - ACTIONS(310), 1, + [37929] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1289), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(970), 1, + STATE(963), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1025), 1, sym_string, - STATE(1342), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1724), 1, sym_expression, - STATE(2775), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1031), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1029), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57639,7 +58094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57656,58 +58111,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37441] = 22, - ACTIONS(310), 1, + [38027] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1289), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(970), 1, + STATE(963), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1025), 1, sym_string, - STATE(1342), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1721), 1, sym_expression, - STATE(2775), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1031), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1029), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57715,7 +58170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57732,58 +58187,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37539] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + [38125] = 22, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(813), 1, + anon_sym_LBRACE, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(837), 1, + anon_sym_lambda, + ACTIONS(1147), 1, + sym_identifier, + ACTIONS(1157), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(970), 1, + STATE(964), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1022), 1, sym_string, - STATE(1342), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(2083), 1, + STATE(1778), 1, sym_expression, - STATE(2775), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1153), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1151), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57791,7 +58246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57808,58 +58263,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37637] = 22, - ACTIONS(733), 1, + [38223] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(912), 1, + STATE(979), 1, sym_primary_expression, - STATE(971), 1, + STATE(1069), 1, sym_string, - STATE(1203), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1792), 1, + STATE(1746), 1, sym_expression, - STATE(2683), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57867,7 +58322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57884,58 +58339,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37735] = 22, - ACTIONS(310), 1, + [38321] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1289), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(970), 1, + STATE(963), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1025), 1, sym_string, - STATE(1342), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1911), 1, + STATE(1957), 1, sym_expression, - STATE(2775), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1031), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1029), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57943,7 +58398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57960,58 +58415,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37833] = 22, - ACTIONS(310), 1, + [38419] = 22, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(987), 1, + anon_sym_not, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(970), 1, + STATE(979), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1069), 1, sym_string, - STATE(1342), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1919), 1, + STATE(1743), 1, sym_expression, - STATE(2775), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(981), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(979), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58019,7 +58474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58036,58 +58491,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37931] = 22, - ACTIONS(67), 1, + [38517] = 22, + ACTIONS(801), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, + ACTIONS(1147), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(1157), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(865), 1, + STATE(964), 1, sym_primary_expression, - STATE(969), 1, + STATE(1022), 1, sym_string, - STATE(1119), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1660), 1, + STATE(1822), 1, sym_expression, - STATE(2751), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58095,7 +58550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58112,58 +58567,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38029] = 22, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [38615] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(967), 1, + STATE(968), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1033), 1, sym_string, - STATE(1388), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1988), 1, sym_expression, - STATE(2638), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1075), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58171,7 +58626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58188,53 +58643,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38127] = 22, - ACTIONS(686), 1, + [38713] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(991), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1343), 1, + anon_sym_STAR, + STATE(979), 1, sym_primary_expression, - STATE(975), 1, + STATE(1069), 1, sym_string, - STATE(1214), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1892), 1, + STATE(1742), 1, sym_expression, - STATE(2773), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, @@ -58247,7 +58702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58264,7 +58719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38225] = 22, + [38811] = 22, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -58273,25 +58728,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(819), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1147), 1, + sym_identifier, + ACTIONS(1157), 1, anon_sym_await, ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1333), 1, anon_sym_STAR, - STATE(976), 1, + STATE(964), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1022), 1, sym_string, - STATE(1437), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1929), 1, + STATE(1817), 1, sym_expression, - STATE(2777), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -58299,14 +58754,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -58315,7 +58770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58323,7 +58778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58340,58 +58795,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38323] = 22, - ACTIONS(711), 1, + [38909] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(967), 1, + STATE(979), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1069), 1, sym_string, - STATE(1388), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1949), 1, + STATE(1741), 1, sym_expression, - STATE(2638), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58399,7 +58854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58416,58 +58871,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38421] = 22, - ACTIONS(755), 1, + [39007] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(963), 1, + STATE(979), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1069), 1, sym_string, - STATE(1258), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1852), 1, + STATE(1771), 1, sym_expression, - STATE(2771), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58475,7 +58930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58492,58 +58947,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38519] = 22, - ACTIONS(67), 1, + [39105] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(865), 1, + STATE(968), 1, sym_primary_expression, - STATE(969), 1, + STATE(1033), 1, sym_string, - STATE(1119), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1661), 1, + STATE(2075), 1, sym_expression, - STATE(2751), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58551,7 +59006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58568,14 +59023,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38617] = 22, - ACTIONS(310), 1, + [39203] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -58583,43 +59038,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(2055), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58627,7 +59082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58644,56 +59099,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38715] = 23, - ACTIONS(686), 1, + [39301] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1501), 1, - sym_identifier, - ACTIONS(1507), 1, + ACTIONS(991), 1, anon_sym_await, - STATE(975), 1, - sym_string, - STATE(991), 1, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1343), 1, + anon_sym_STAR, + STATE(979), 1, sym_primary_expression, - STATE(1214), 1, + STATE(1069), 1, + sym_string, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1905), 1, + STATE(1740), 1, sym_expression, - STATE(2773), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1505), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - STATE(1173), 2, - sym_attribute, - sym_subscript, - ACTIONS(696), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1503), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, @@ -58706,9 +59158,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 14, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -58721,58 +59175,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38815] = 22, - ACTIONS(67), 1, + [39399] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(865), 1, + STATE(968), 1, sym_primary_expression, - STATE(969), 1, + STATE(1033), 1, sym_string, - STATE(1119), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1965), 1, + STATE(1735), 1, sym_expression, - STATE(2751), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58780,7 +59234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58797,58 +59251,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38913] = 22, - ACTIONS(733), 1, + [39497] = 22, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(1147), 1, + sym_identifier, + ACTIONS(1157), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(912), 1, + STATE(964), 1, sym_primary_expression, - STATE(971), 1, + STATE(1022), 1, sym_string, - STATE(1203), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1880), 1, + STATE(1810), 1, sym_expression, - STATE(2683), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58856,7 +59310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58873,14 +59327,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39011] = 22, - ACTIONS(310), 1, + [39595] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -58888,43 +59342,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1722), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58932,7 +59386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58949,58 +59403,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39109] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + [39693] = 22, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, + anon_sym_await, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(970), 1, + STATE(965), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1003), 1, sym_string, - STATE(1342), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1720), 1, + STATE(1855), 1, sym_expression, - STATE(2775), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1137), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1135), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59008,7 +59462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59025,58 +59479,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39207] = 22, - ACTIONS(67), 1, + [39791] = 22, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(859), 1, + anon_sym_not, + ACTIONS(861), 1, + anon_sym_lambda, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(865), 1, + STATE(904), 1, sym_primary_expression, - STATE(969), 1, + STATE(982), 1, sym_string, - STATE(1119), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1877), 1, + STATE(1756), 1, sym_expression, - STATE(2751), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59084,7 +59538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59101,14 +59555,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39305] = 22, - ACTIONS(310), 1, + [39889] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -59116,43 +59570,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(2047), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59160,7 +59614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59177,53 +59631,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39403] = 22, - ACTIONS(686), 1, + [39987] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(991), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1343), 1, + anon_sym_STAR, + STATE(979), 1, sym_primary_expression, - STATE(975), 1, + STATE(1069), 1, sym_string, - STATE(1214), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1769), 1, + STATE(1739), 1, sym_expression, - STATE(2773), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, @@ -59236,7 +59690,146 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1448), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40085] = 9, + ACTIONS(1497), 1, + anon_sym_else, + ACTIONS(1499), 1, + anon_sym_except, + ACTIONS(1501), 1, + anon_sym_finally, + STATE(716), 1, + sym_else_clause, + STATE(731), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(611), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1495), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1493), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [40157] = 22, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, + anon_sym_STAR, + STATE(968), 1, + sym_primary_expression, + STATE(1033), 1, + sym_string, + STATE(1269), 1, + sym_list_splat_pattern, + STATE(2048), 1, + sym_expression, + STATE(2711), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(296), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1720), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59253,7 +59846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39501] = 22, + [40255] = 22, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -59262,25 +59855,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(819), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1147), 1, + sym_identifier, + ACTIONS(1157), 1, anon_sym_await, ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1333), 1, anon_sym_STAR, - STATE(976), 1, + STATE(964), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1022), 1, sym_string, - STATE(1437), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1956), 1, + STATE(1783), 1, sym_expression, - STATE(2777), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -59288,14 +59881,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -59304,7 +59897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59312,7 +59905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59329,7 +59922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39599] = 22, + [40353] = 23, ACTIONS(779), 1, anon_sym_LPAREN, ACTIONS(787), 1, @@ -59338,23 +59931,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(797), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1159), 1, + ACTIONS(1343), 1, + anon_sym_STAR, + ACTIONS(1503), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1509), 1, anon_sym_await, - ACTIONS(1267), 1, - anon_sym_STAR, - STATE(965), 1, + STATE(979), 1, sym_primary_expression, - STATE(996), 1, + STATE(1069), 1, sym_string, - STATE(1360), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1779), 1, + STATE(1947), 1, sym_expression, STATE(2611), 1, sym__named_expression_lhs, @@ -59364,14 +59957,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1507), 2, anon_sym_match, anon_sym_type, + STATE(1483), 2, + sym_attribute, + sym_subscript, ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1505), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -59380,7 +59976,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1767), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1448), 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, + [40453] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, + sym_identifier, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1317), 1, + anon_sym_STAR, + STATE(860), 1, + sym_primary_expression, + STATE(967), 1, + sym_string, + STATE(1118), 1, + sym_list_splat_pattern, + STATE(1775), 1, + sym_expression, + STATE(2775), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59388,7 +60058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59405,61 +60075,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39697] = 23, - ACTIONS(711), 1, + [40551] = 23, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(1003), 1, + anon_sym_STAR, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1013), 1, anon_sym_lambda, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1509), 1, + ACTIONS(1511), 1, sym_identifier, - ACTIONS(1515), 1, + ACTIONS(1517), 1, anon_sym_await, - STATE(967), 1, - sym_primary_expression, - STATE(1028), 1, + STATE(981), 1, sym_string, - STATE(1388), 1, + STATE(1023), 1, + sym_primary_expression, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1958), 1, sym_expression, - STATE(2638), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1513), 2, + ACTIONS(1515), 2, anon_sym_match, anon_sym_type, - STATE(1477), 2, + STATE(1206), 2, sym_attribute, sym_subscript, - ACTIONS(721), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1511), 3, + ACTIONS(1513), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59467,7 +60137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 14, + STATE(1208), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -59482,26 +60152,26 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39797] = 9, - ACTIONS(1485), 1, + [40651] = 9, + ACTIONS(1497), 1, anon_sym_else, - ACTIONS(1487), 1, - anon_sym_except, - ACTIONS(1489), 1, + ACTIONS(1501), 1, anon_sym_finally, - STATE(704), 1, + ACTIONS(1519), 1, + anon_sym_except_STAR, + STATE(716), 1, sym_else_clause, - STATE(729), 1, + STATE(731), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(622), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1517), 12, + STATE(620), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1495), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -59512,7 +60182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1519), 32, + ACTIONS(1493), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -59545,121 +60215,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [39869] = 9, - ACTIONS(1485), 1, - anon_sym_else, - ACTIONS(1489), 1, - anon_sym_finally, - ACTIONS(1491), 1, - anon_sym_except_STAR, - STATE(704), 1, - sym_else_clause, - STATE(729), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(623), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1517), 12, - sym_string_start, - ts_builtin_sym_end, + [40723] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(787), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(791), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1519), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(987), 1, anon_sym_not, + ACTIONS(989), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(1343), 1, + anon_sym_STAR, + ACTIONS(1509), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [39941] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, + ACTIONS(1521), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, - anon_sym_STAR, - STATE(865), 1, + STATE(1028), 1, sym_primary_expression, - STATE(969), 1, + STATE(1069), 1, sym_string, - STATE(1119), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1665), 1, + STATE(1947), 1, sym_expression, - STATE(2751), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1525), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1267), 2, + sym_attribute, + sym_subscript, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1523), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59667,11 +60277,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1448), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -59684,14 +60292,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40039] = 22, - ACTIONS(310), 1, + [40823] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -59699,43 +60307,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(2064), 1, + STATE(2015), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59743,7 +60351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59760,58 +60368,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40137] = 22, - ACTIONS(67), 1, + [40921] = 23, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, + ACTIONS(1301), 1, + anon_sym_STAR, + ACTIONS(1527), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(1533), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, - anon_sym_STAR, - STATE(865), 1, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1025), 1, sym_string, - STATE(1119), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1780), 1, + STATE(1886), 1, sym_expression, - STATE(2751), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1531), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1482), 2, + sym_attribute, + sym_subscript, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1529), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59819,11 +60430,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1380), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -59836,58 +60445,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40235] = 22, - ACTIONS(67), 1, + [41021] = 22, + ACTIONS(801), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, + ACTIONS(1147), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(1157), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(865), 1, + STATE(964), 1, sym_primary_expression, - STATE(969), 1, + STATE(1022), 1, sym_string, - STATE(1119), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(2034), 1, + STATE(1820), 1, sym_expression, - STATE(2751), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59895,7 +60504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59912,58 +60521,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40333] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + [41119] = 22, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1139), 1, + anon_sym_await, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(970), 1, + STATE(965), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1003), 1, sym_string, - STATE(1342), 1, + STATE(1264), 1, sym_list_splat_pattern, - STATE(2091), 1, + STATE(1799), 1, sym_expression, - STATE(2775), 1, + STATE(2614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1137), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1135), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1796), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59971,7 +60580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59988,58 +60597,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40431] = 22, - ACTIONS(67), 1, + [41217] = 23, + ACTIONS(686), 1, + anon_sym_LPAREN, + ACTIONS(694), 1, + anon_sym_LBRACK, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_STAR, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1013), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(1517), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, - anon_sym_STAR, - STATE(865), 1, + ACTIONS(1535), 1, + sym_identifier, + STATE(946), 1, sym_primary_expression, - STATE(969), 1, + STATE(981), 1, sym_string, - STATE(1119), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1657), 1, + STATE(1958), 1, sym_expression, - STATE(2751), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1539), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1484), 2, + sym_attribute, + sym_subscript, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1537), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60047,11 +60659,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1208), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -60064,58 +60674,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40529] = 22, - ACTIONS(310), 1, + [41317] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1289), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(970), 1, + STATE(963), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1025), 1, sym_string, - STATE(1342), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(2013), 1, + STATE(1974), 1, sym_expression, - STATE(2775), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1031), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1029), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60123,7 +60733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60140,58 +60750,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40627] = 22, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [41415] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(751), 1, - sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, + sym_identifier, + ACTIONS(406), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(912), 1, + STATE(860), 1, sym_primary_expression, - STATE(971), 1, + STATE(967), 1, sym_string, - STATE(1203), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1900), 1, sym_expression, - STATE(2683), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60199,7 +60809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60216,61 +60826,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40725] = 23, - ACTIONS(801), 1, + [41513] = 22, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(1333), 1, - anon_sym_STAR, - ACTIONS(1499), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1521), 1, - sym_identifier, - STATE(976), 1, + ACTIONS(1249), 1, + anon_sym_STAR, + STATE(904), 1, sym_primary_expression, - STATE(1107), 1, + STATE(982), 1, sym_string, - STATE(1437), 1, + STATE(1212), 1, sym_list_splat_pattern, - STATE(1973), 1, + STATE(1808), 1, sym_expression, - STATE(2777), 1, + STATE(2605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1525), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1478), 2, - sym_attribute, - sym_subscript, - ACTIONS(811), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1523), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1768), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60278,9 +60885,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 14, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -60293,58 +60902,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40825] = 22, - ACTIONS(67), 1, + [41611] = 22, + ACTIONS(686), 1, + anon_sym_LPAREN, + ACTIONS(694), 1, + anon_sym_LBRACK, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_STAR, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1013), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, + ACTIONS(1107), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, - anon_sym_STAR, - STATE(865), 1, + STATE(946), 1, sym_primary_expression, - STATE(969), 1, + STATE(981), 1, sym_string, - STATE(1119), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1658), 1, + STATE(1889), 1, sym_expression, - STATE(2751), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60352,7 +60961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60369,7 +60978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40923] = 22, + [41709] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -60386,17 +60995,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(865), 1, + STATE(860), 1, sym_primary_expression, - STATE(969), 1, + STATE(967), 1, sym_string, - STATE(1119), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(1659), 1, + STATE(1859), 1, sym_expression, - STATE(2751), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -60420,7 +61029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60428,7 +61037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60445,8 +61054,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41021] = 22, - ACTIONS(755), 1, + [41807] = 9, + ACTIONS(1497), 1, + anon_sym_else, + ACTIONS(1499), 1, + anon_sym_except, + ACTIONS(1501), 1, + anon_sym_finally, + STATE(721), 1, + sym_else_clause, + STATE(809), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(611), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1481), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1483), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [41879] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, anon_sym_LBRACK, @@ -60454,25 +61126,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1289), 1, + sym_identifier, + ACTIONS(1301), 1, anon_sym_STAR, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1798), 1, + STATE(1908), 1, sym_expression, - STATE(2771), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -60480,23 +61152,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60504,7 +61176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60521,58 +61193,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41119] = 22, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, - anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, - sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(967), 1, - sym_primary_expression, - STATE(1028), 1, - sym_string, - STATE(1388), 1, - sym_list_splat_pattern, - STATE(1907), 1, - sym_expression, - STATE(2638), 1, - sym__named_expression_lhs, + [41977] = 9, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1489), 1, + anon_sym_finally, + ACTIONS(1491), 1, + anon_sym_except_STAR, + STATE(700), 1, + sym_else_clause, + STATE(822), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1075), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, + STATE(616), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1495), 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(1073), 3, + sym_ellipsis, + sym_float, + ACTIONS(1493), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(709), 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(1723), 7, + [42049] = 22, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, + anon_sym_STAR, + STATE(968), 1, + sym_primary_expression, + STATE(1033), 1, + sym_string, + STATE(1269), 1, + sym_list_splat_pattern, + STATE(2081), 1, + sym_expression, + STATE(2711), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(296), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60580,7 +61315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60597,58 +61332,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41217] = 22, - ACTIONS(755), 1, + [42147] = 9, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1487), 1, + anon_sym_except, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(700), 1, + sym_else_clause, + STATE(822), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(610), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1495), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(765), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(769), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1493), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1051), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1251), 1, + sym_true, + sym_false, + sym_none, + [42219] = 22, + ACTIONS(686), 1, + anon_sym_LPAREN, + ACTIONS(694), 1, + anon_sym_LBRACK, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_STAR, - STATE(963), 1, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1013), 1, + anon_sym_lambda, + ACTIONS(1107), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_await, + STATE(946), 1, sym_primary_expression, - STATE(1015), 1, + STATE(981), 1, sym_string, - STATE(1258), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1834), 1, + STATE(1770), 1, sym_expression, - STATE(2771), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60656,7 +61454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60673,58 +61471,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41315] = 22, - ACTIONS(755), 1, + [42317] = 22, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(835), 1, anon_sym_not, ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1051), 1, + ACTIONS(1147), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1157), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(963), 1, + STATE(964), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1022), 1, sym_string, - STATE(1258), 1, + STATE(1307), 1, sym_list_splat_pattern, - STATE(1807), 1, + STATE(1874), 1, sym_expression, - STATE(2771), 1, + STATE(2690), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1153), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1776), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60732,7 +61530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60749,58 +61547,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41413] = 22, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [42415] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(963), 1, + STATE(968), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1033), 1, sym_string, - STATE(1258), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1808), 1, + STATE(2010), 1, sym_expression, - STATE(2771), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1059), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60808,7 +61606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60825,58 +61623,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41511] = 22, - ACTIONS(755), 1, + [42513] = 9, + ACTIONS(1497), 1, + anon_sym_else, + ACTIONS(1501), 1, + anon_sym_finally, + ACTIONS(1519), 1, + anon_sym_except_STAR, + STATE(721), 1, + sym_else_clause, + STATE(809), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(620), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1481), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(765), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(769), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1483), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1051), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1251), 1, + sym_true, + sym_false, + sym_none, + [42585] = 22, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(963), 1, + STATE(968), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1033), 1, sym_string, - STATE(1258), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1725), 1, sym_expression, - STATE(2771), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1059), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60884,7 +61745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60901,58 +61762,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41609] = 22, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [42683] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(322), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, + anon_sym_STAR, + STATE(968), 1, sym_primary_expression, - STATE(975), 1, + STATE(1033), 1, sym_string, - STATE(1214), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1755), 1, + STATE(2044), 1, sym_expression, - STATE(2773), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, - sym_ellipsis, - sym_float, - ACTIONS(1103), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60960,7 +61821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60977,56 +61838,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41707] = 23, - ACTIONS(686), 1, + [42781] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1507), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(1527), 1, + ACTIONS(1263), 1, sym_identifier, - STATE(909), 1, + ACTIONS(1343), 1, + anon_sym_STAR, + STATE(979), 1, sym_primary_expression, - STATE(975), 1, + STATE(1069), 1, sym_string, - STATE(1214), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1905), 1, + STATE(1936), 1, sym_expression, - STATE(2773), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1531), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - STATE(1479), 2, - sym_attribute, - sym_subscript, - ACTIONS(696), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1529), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, @@ -61039,9 +61897,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 14, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -61054,58 +61914,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41807] = 22, - ACTIONS(686), 1, + [42879] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(1301), 1, + anon_sym_STAR, + ACTIONS(1533), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1541), 1, + sym_identifier, + STATE(991), 1, sym_primary_expression, - STATE(975), 1, + STATE(1025), 1, sym_string, - STATE(1214), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1886), 1, sym_expression, - STATE(2773), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(1545), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + STATE(1368), 2, + sym_attribute, + sym_subscript, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(1543), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61113,11 +61976,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1380), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -61130,58 +61991,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41905] = 22, - ACTIONS(67), 1, + [42979] = 22, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(865), 1, + STATE(979), 1, sym_primary_expression, - STATE(969), 1, + STATE(1069), 1, sym_string, - STATE(1119), 1, + STATE(1447), 1, sym_list_splat_pattern, - STATE(1662), 1, + STATE(1913), 1, sym_expression, - STATE(2751), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61189,7 +62050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61206,58 +62067,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42003] = 22, - ACTIONS(711), 1, + [43077] = 22, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(1003), 1, + anon_sym_STAR, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1013), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1107), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(967), 1, + ACTIONS(1117), 1, + anon_sym_await, + STATE(946), 1, sym_primary_expression, - STATE(1028), 1, + STATE(981), 1, sym_string, - STATE(1388), 1, + STATE(1183), 1, sym_list_splat_pattern, - STATE(1910), 1, + STATE(1772), 1, sym_expression, - STATE(2638), 1, + STATE(2746), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1762), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61265,7 +62126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61282,58 +62143,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42101] = 22, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [43175] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(967), 1, - sym_primary_expression, - STATE(1028), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, + anon_sym_STAR, + STATE(968), 1, + sym_primary_expression, + STATE(1033), 1, sym_string, - STATE(1388), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1916), 1, + STATE(2043), 1, sym_expression, - STATE(2638), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1075), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61341,7 +62202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61358,8 +62219,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42199] = 22, - ACTIONS(755), 1, + [43273] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, anon_sym_LBRACK, @@ -61367,25 +62228,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1289), 1, + sym_identifier, + ACTIONS(1301), 1, anon_sym_STAR, STATE(963), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1941), 1, sym_expression, - STATE(2771), 1, + STATE(2691), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -61393,23 +62254,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1031), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1029), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61417,7 +62278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61434,58 +62295,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42297] = 22, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [43371] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(967), 1, + STATE(968), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1033), 1, sym_string, - STATE(1388), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(2096), 1, sym_expression, - STATE(2638), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1075), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61493,7 +62354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61510,61 +62371,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42395] = 23, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [43469] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1515), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1533), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - STATE(1028), 1, - sym_string, - STATE(1030), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, + anon_sym_STAR, + STATE(968), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1033), 1, + sym_string, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2070), 1, sym_expression, - STATE(2638), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1537), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - STATE(1377), 2, - sym_attribute, - sym_subscript, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1535), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61572,9 +62430,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 14, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -61587,184 +62447,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42495] = 9, - ACTIONS(1539), 1, - anon_sym_else, - ACTIONS(1541), 1, - anon_sym_except, - ACTIONS(1543), 1, - anon_sym_finally, - STATE(718), 1, - sym_else_clause, - STATE(818), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(624), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1517), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [43567] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1519), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, + ACTIONS(314), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(322), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [42567] = 9, - ACTIONS(1539), 1, - anon_sym_else, - ACTIONS(1543), 1, - anon_sym_finally, - ACTIONS(1545), 1, - anon_sym_except_STAR, - STATE(718), 1, - sym_else_clause, - STATE(818), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(625), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1517), 12, - sym__dedent, + ACTIONS(324), 1, sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1519), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(408), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42639] = 22, - ACTIONS(755), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(837), 1, - anon_sym_lambda, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(963), 1, + STATE(968), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1033), 1, sym_string, - STATE(1258), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1813), 1, + STATE(1914), 1, sym_expression, - STATE(2771), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1059), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61772,7 +62506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61789,58 +62523,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42737] = 22, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [43665] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1067), 1, + anon_sym_not, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(976), 1, + STATE(968), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1033), 1, sym_string, - STATE(1437), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1930), 1, sym_expression, - STATE(2777), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61848,7 +62582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61865,140 +62599,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42835] = 9, - ACTIONS(1539), 1, - anon_sym_else, - ACTIONS(1541), 1, - anon_sym_except, - ACTIONS(1543), 1, - anon_sym_finally, - STATE(720), 1, - sym_else_clause, - STATE(834), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(624), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1481), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1483), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42907] = 9, - ACTIONS(1539), 1, - anon_sym_else, - ACTIONS(1543), 1, - anon_sym_finally, - ACTIONS(1545), 1, - anon_sym_except_STAR, - STATE(720), 1, - sym_else_clause, - STATE(834), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(625), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1481), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1483), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42979] = 22, - ACTIONS(310), 1, + [43763] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -62006,43 +62614,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(2011), 1, + STATE(2068), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62050,7 +62658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62067,58 +62675,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43077] = 22, - ACTIONS(310), 1, + [43861] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(970), 1, + STATE(860), 1, sym_primary_expression, - STATE(1010), 1, + STATE(967), 1, sym_string, - STATE(1342), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(2049), 1, + STATE(1669), 1, sym_expression, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62126,7 +62734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62143,58 +62751,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43175] = 22, - ACTIONS(310), 1, + [43959] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(970), 1, + STATE(860), 1, sym_primary_expression, - STATE(1010), 1, + STATE(967), 1, sym_string, - STATE(1342), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(2063), 1, + STATE(1667), 1, sym_expression, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62202,7 +62810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62219,58 +62827,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43273] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, + [44057] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(970), 1, + STATE(860), 1, sym_primary_expression, - STATE(1010), 1, + STATE(967), 1, sym_string, - STATE(1342), 1, + STATE(1118), 1, sym_list_splat_pattern, - STATE(2070), 1, + STATE(2069), 1, sym_expression, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62278,7 +62886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62295,14 +62903,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43371] = 22, - ACTIONS(310), 1, + [44155] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -62310,43 +62918,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(970), 1, + STATE(968), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(2076), 1, + STATE(2095), 1, sym_expression, - STATE(2775), 1, + STATE(2711), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(296), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62354,7 +62962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62371,631 +62979,376 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43469] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, + [44253] = 10, + ACTIONS(1549), 1, + anon_sym_COMMA, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, + ACTIONS(1556), 1, + anon_sym_COLON, + ACTIONS(1559), 1, + anon_sym_EQ, + ACTIONS(1561), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + STATE(2105), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1563), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1552), 15, anon_sym_STAR, - STATE(970), 1, - sym_primary_expression, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1992), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, + 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(1547), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [44326] = 5, + ACTIONS(1569), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + STATE(610), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1565), 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(290), 3, + ACTIONS(1567), 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, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(323), 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(1717), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1268), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [43567] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, - anon_sym_STAR, - STATE(970), 1, - sym_primary_expression, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(2084), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, + [44388] = 5, + ACTIONS(1572), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + STATE(611), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1565), 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(1567), 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, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(323), 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(1717), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1268), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [43665] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + [44450] = 8, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(294), 1, + anon_sym_EQ, + ACTIONS(326), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(316), 13, + 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, - ACTIONS(678), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1433), 1, - anon_sym_STAR, - STATE(970), 1, - sym_primary_expression, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(2094), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, + 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, + [44518] = 8, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1579), 1, + anon_sym_elif, + STATE(628), 1, + aux_sym_if_statement_repeat1, + STATE(717), 1, + sym_elif_clause, + STATE(749), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(1575), 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(290), 3, + ACTIONS(1577), 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(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(323), 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(1717), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1268), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [43763] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, - anon_sym_STAR, - STATE(970), 1, - sym_primary_expression, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(2095), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, + [44586] = 8, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1579), 1, + anon_sym_elif, + STATE(625), 1, + aux_sym_if_statement_repeat1, + STATE(717), 1, + sym_elif_clause, + STATE(748), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + 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(290), 3, + ACTIONS(1583), 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(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(323), 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(1717), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1268), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [43861] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, - anon_sym_STAR, - STATE(970), 1, - sym_primary_expression, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(2099), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1717), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1268), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [43959] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, - anon_sym_STAR, - STATE(970), 1, - sym_primary_expression, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(2100), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1717), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1268), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [44057] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, - anon_sym_STAR, - STATE(970), 1, - sym_primary_expression, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(2101), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1717), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1268), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [44155] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, - anon_sym_STAR, - STATE(970), 1, - sym_primary_expression, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(2088), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1717), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1268), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [44253] = 10, - ACTIONS(1549), 1, + [44654] = 8, + ACTIONS(284), 1, anon_sym_COMMA, - ACTIONS(1554), 1, + ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(1556), 1, - anon_sym_COLON, - ACTIONS(1559), 1, + ACTIONS(294), 1, anon_sym_EQ, - ACTIONS(1561), 1, - anon_sym_LBRACK, - STATE(2018), 1, - sym_type_parameter, + ACTIONS(326), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 13, + ACTIONS(316), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63009,7 +63362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1552), 15, + ACTIONS(279), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63025,7 +63378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 16, + ACTIONS(277), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63033,6 +63386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_if, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -63042,21 +63396,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44326] = 8, - ACTIONS(1539), 1, + [44722] = 5, + ACTIONS(1589), 1, + anon_sym_except_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(616), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1585), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1587), 34, + 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, - ACTIONS(1569), 1, + 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, + [44784] = 8, + ACTIONS(1497), 1, + anon_sym_else, + ACTIONS(1596), 1, anon_sym_elif, - STATE(630), 1, + STATE(622), 1, aux_sym_if_statement_repeat1, - STATE(716), 1, + STATE(703), 1, sym_elif_clause, - STATE(841), 1, + STATE(781), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 12, + ACTIONS(1594), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63069,7 +63480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1565), 32, + ACTIONS(1592), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63102,21 +63513,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44394] = 8, + [44852] = 8, ACTIONS(1485), 1, anon_sym_else, - ACTIONS(1575), 1, + ACTIONS(1579), 1, anon_sym_elif, - STATE(614), 1, + STATE(613), 1, aux_sym_if_statement_repeat1, - STATE(701), 1, + STATE(717), 1, sym_elif_clause, - STATE(733), 1, + STATE(741), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 12, + ACTIONS(1594), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63129,7 +63540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1573), 32, + ACTIONS(1592), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63162,7 +63573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44462] = 7, + [44920] = 7, ACTIONS(284), 1, anon_sym_COMMA, ACTIONS(292), 1, @@ -63170,10 +63581,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(294), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(319), 13, + ACTIONS(316), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63221,19 +63632,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44528] = 8, + [44986] = 5, + ACTIONS(1598), 1, + anon_sym_except_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(620), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1585), 12, + sym__dedent, + 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(1587), 34, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_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, + [45048] = 7, ACTIONS(284), 1, anon_sym_COMMA, ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_COLON, - ACTIONS(302), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(319), 13, + ACTIONS(294), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(316), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63281,81 +63748,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44596] = 8, - ACTIONS(1485), 1, - anon_sym_else, - ACTIONS(1575), 1, - anon_sym_elif, - STATE(632), 1, - aux_sym_if_statement_repeat1, - STATE(701), 1, - sym_elif_clause, - STATE(756), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1567), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1565), 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, - [44664] = 8, - ACTIONS(1539), 1, + [45114] = 8, + ACTIONS(1497), 1, anon_sym_else, - ACTIONS(1569), 1, + ACTIONS(1596), 1, anon_sym_elif, - STATE(619), 1, + STATE(637), 1, aux_sym_if_statement_repeat1, - STATE(716), 1, + STATE(703), 1, sym_elif_clause, - STATE(808), 1, + STATE(746), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1579), 12, + ACTIONS(1575), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63401,23 +63808,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44732] = 8, - ACTIONS(1485), 1, + [45182] = 8, + ACTIONS(1497), 1, anon_sym_else, - ACTIONS(1575), 1, + ACTIONS(1596), 1, anon_sym_elif, - STATE(632), 1, + STATE(637), 1, aux_sym_if_statement_repeat1, - STATE(701), 1, + STATE(703), 1, sym_elif_clause, - STATE(732), 1, + STATE(832), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 12, + ACTIONS(1603), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63428,7 +63835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1583), 32, + ACTIONS(1601), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63461,18 +63868,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44800] = 7, - ACTIONS(284), 1, + [45250] = 7, + ACTIONS(1549), 1, anon_sym_COMMA, - ACTIONS(292), 1, + ACTIONS(1554), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(1559), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(319), 13, + ACTIONS(1563), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63486,7 +63893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(279), 15, + ACTIONS(1552), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63502,7 +63909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 17, + ACTIONS(1547), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63520,21 +63927,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44866] = 8, + [45316] = 8, ACTIONS(1485), 1, anon_sym_else, - ACTIONS(1575), 1, + ACTIONS(1579), 1, anon_sym_elif, - STATE(616), 1, + STATE(628), 1, aux_sym_if_statement_repeat1, - STATE(701), 1, + STATE(717), 1, sym_elif_clause, - STATE(786), 1, + STATE(834), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1579), 12, + ACTIONS(1603), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63547,7 +63954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1577), 32, + ACTIONS(1601), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63580,16 +63987,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44934] = 8, - ACTIONS(1539), 1, + [45384] = 8, + ACTIONS(1497), 1, anon_sym_else, - ACTIONS(1569), 1, + ACTIONS(1596), 1, anon_sym_elif, - STATE(630), 1, + STATE(623), 1, aux_sym_if_statement_repeat1, - STATE(716), 1, + STATE(703), 1, sym_elif_clause, - STATE(825), 1, + STATE(747), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, @@ -63640,99 +64047,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45002] = 8, - ACTIONS(1539), 1, - anon_sym_else, - ACTIONS(1569), 1, - anon_sym_elif, - STATE(610), 1, - aux_sym_if_statement_repeat1, - STATE(716), 1, - sym_elif_clause, - STATE(826), 1, - sym_else_clause, + [45452] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(1607), 16, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1573), 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, - [45070] = 8, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_COLON, - ACTIONS(302), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(319), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -63742,13 +64068,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 17, + ACTIONS(1605), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -63760,73 +64088,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45138] = 5, - ACTIONS(1589), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(622), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1585), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1587), 34, - 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, - [45200] = 5, - ACTIONS(1596), 1, - anon_sym_except_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [45509] = 6, + ACTIONS(1613), 1, + anon_sym_elif, + STATE(628), 1, + aux_sym_if_statement_repeat1, + STATE(717), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(623), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1592), 12, + ACTIONS(1609), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63839,7 +64124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1594), 34, + ACTIONS(1611), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63857,7 +64142,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, @@ -63874,132 +64158,72 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45262] = 5, - ACTIONS(1599), 1, - anon_sym_except, + [45572] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(624), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1585), 12, - sym__dedent, - sym_string_start, + ACTIONS(1618), 3, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_STAR, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1587), 34, - 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, - [45324] = 5, - ACTIONS(1602), 1, - anon_sym_except_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(625), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1592), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(1624), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1621), 13, 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(1594), 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, + ACTIONS(1616), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + 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_COLON, + anon_sym_in, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45386] = 7, - ACTIONS(1549), 1, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [45633] = 6, + ACTIONS(1628), 1, anon_sym_COMMA, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + ACTIONS(1635), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 2, + ACTIONS(1633), 14, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1563), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64013,7 +64237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1552), 15, + ACTIONS(1631), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64029,7 +64253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 17, + ACTIONS(1626), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64047,18 +64271,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45452] = 3, + [45696] = 7, + ACTIONS(1639), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 16, + ACTIONS(1618), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1637), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(1624), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1621), 12, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -64066,19 +64300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1605), 32, + ACTIONS(1616), 28, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -64101,16 +64329,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45509] = 6, + [45761] = 6, ACTIONS(1559), 1, anon_sym_EQ, + ACTIONS(1643), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1611), 2, - anon_sym_COMMA, + ACTIONS(1563), 14, anon_sym_COLON, - ACTIONS(1563), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64124,7 +64352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1614), 15, + ACTIONS(1646), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64140,7 +64368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 17, + ACTIONS(1641), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64158,16 +64386,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45572] = 6, - ACTIONS(1559), 1, + [45824] = 6, + ACTIONS(1655), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 2, + ACTIONS(1650), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1563), 13, + ACTIONS(1657), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64181,7 +64409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1552), 15, + ACTIONS(1653), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64197,7 +64425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 17, + ACTIONS(1648), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64215,73 +64443,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45635] = 6, - ACTIONS(1620), 1, - anon_sym_elif, - STATE(630), 1, - aux_sym_if_statement_repeat1, - STATE(716), 1, - sym_elif_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1618), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1616), 33, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45698] = 6, - ACTIONS(1625), 1, - anon_sym_COMMA, - ACTIONS(1632), 1, + [45887] = 6, + ACTIONS(1635), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1630), 14, + ACTIONS(1628), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(1633), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64295,7 +64466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1628), 15, + ACTIONS(1631), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64311,7 +64482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 17, + ACTIONS(1626), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64329,73 +64500,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45761] = 6, - ACTIONS(1634), 1, - anon_sym_elif, - STATE(632), 1, - aux_sym_if_statement_repeat1, - STATE(701), 1, - sym_elif_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1618), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1616), 33, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45824] = 6, - ACTIONS(1632), 1, + [45950] = 6, + ACTIONS(1559), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 2, + ACTIONS(1549), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1630), 13, + ACTIONS(1563), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64409,7 +64523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1628), 15, + ACTIONS(1552), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64425,7 +64539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 17, + ACTIONS(1547), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64443,16 +64557,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45887] = 6, - ACTIONS(1644), 1, + [46013] = 6, + ACTIONS(1559), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 2, + ACTIONS(1643), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1646), 13, + ACTIONS(1563), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64466,7 +64580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1642), 15, + ACTIONS(1646), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64482,7 +64596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 17, + ACTIONS(1641), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64500,15 +64614,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45950] = 6, - ACTIONS(1639), 1, + [46076] = 6, + ACTIONS(1659), 1, + anon_sym_elif, + STATE(637), 1, + aux_sym_if_statement_repeat1, + STATE(703), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1609), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1611), 33, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46139] = 6, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(1644), 1, + ACTIONS(1655), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 14, + ACTIONS(1657), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -64523,7 +64694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1642), 15, + ACTIONS(1653), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64539,7 +64710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 17, + ACTIONS(1648), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64557,28 +64728,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46013] = 7, - ACTIONS(1660), 1, - anon_sym_PIPE, + [46202] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1650), 2, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(1652), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1658), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1655), 12, + ACTIONS(1607), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -64586,13 +64747,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1648), 28, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1605), 32, sym__newline, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -64615,7 +64782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46078] = 3, + [46259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -64669,123 +64836,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46135] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1652), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1658), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1655), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1648), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46196] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(670), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(706), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(665), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(663), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46257] = 6, - ACTIONS(1549), 1, - anon_sym_COMMA, - ACTIONS(1559), 1, - anon_sym_EQ, + [46316] = 6, + ACTIONS(1549), 1, + anon_sym_COMMA, + ACTIONS(1559), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -64838,72 +64893,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46320] = 6, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1611), 1, - anon_sym_COMMA, + [46379] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 14, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1614), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(670), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(706), 3, 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, - [46383] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1668), 16, + ACTIONS(665), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64914,19 +64919,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(1666), 32, + ACTIONS(663), 29, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -65057,15 +65057,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46554] = 3, + [46554] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 16, + ACTIONS(670), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(706), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(665), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -65076,19 +65083,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(1674), 32, + ACTIONS(663), 29, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -65111,22 +65113,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46611] = 5, + [46615] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(670), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(706), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(665), 13, + ACTIONS(1672), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -65137,14 +65132,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1670), 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, @@ -65225,12 +65225,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 13, + ACTIONS(1678), 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, @@ -65239,7 +65238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1680), 34, + ACTIONS(1680), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65251,6 +65250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -65278,9 +65278,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 12, - sym__dedent, + ACTIONS(1682), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -65291,7 +65291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1682), 35, + ACTIONS(1684), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65331,12 +65331,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 13, - sym__dedent, + ACTIONS(1678), 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, @@ -65345,7 +65344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1680), 34, + ACTIONS(1680), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65363,6 +65362,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, @@ -65380,11 +65380,82 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46897] = 3, + [46897] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1686), 1, + sym_identifier, + ACTIONS(1688), 1, + anon_sym_LPAREN, + ACTIONS(1690), 1, + anon_sym_STAR, + ACTIONS(1696), 1, + anon_sym_LBRACK, + ACTIONS(1698), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1577), 1, + sym_list_splat_pattern, + STATE(1626), 1, + sym_primary_expression, + STATE(1992), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1694), 2, + anon_sym_match, + anon_sym_type, + STATE(1574), 2, + sym_attribute, + sym_subscript, + STATE(2076), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1692), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(973), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [46989] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1688), 12, + ACTIONS(1702), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65397,7 +65468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1686), 35, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65409,13 +65480,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, @@ -65433,11 +65504,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46953] = 3, + [47045] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 12, + ACTIONS(1706), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65450,7 +65521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 35, + ACTIONS(1704), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65486,11 +65557,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47009] = 3, + [47101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1710), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65503,7 +65574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1694), 35, + ACTIONS(1708), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65539,15 +65610,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47065] = 3, + [47157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, + ACTIONS(1714), 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, @@ -65556,7 +65628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1712), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65574,7 +65646,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, @@ -65592,15 +65663,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47121] = 3, + [47213] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 12, - sym__dedent, + ACTIONS(1678), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65609,7 +65681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1680), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65621,7 +65693,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, @@ -65645,82 +65716,117 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47177] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, + [47269] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 12, sym_string_start, - ACTIONS(1706), 1, - sym_identifier, - ACTIONS(1708), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1710), 1, anon_sym_STAR, - ACTIONS(1716), 1, anon_sym_LBRACK, - ACTIONS(1718), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1578), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(2046), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1714), 2, + ACTIONS(1718), 35, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1576), 2, - sym_attribute, - sym_subscript, - STATE(2052), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 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, + [47325] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1720), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_except_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1712), 3, + sym_ellipsis, + sym_float, + ACTIONS(1722), 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, - ACTIONS(323), 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(973), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [47269] = 3, + [47381] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 13, + ACTIONS(1720), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65734,7 +65840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1682), 34, + ACTIONS(1722), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65769,15 +65875,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47325] = 3, + [47437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 12, + ACTIONS(1724), 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, @@ -65786,7 +65893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 35, + ACTIONS(1726), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65804,7 +65911,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, @@ -65822,11 +65928,82 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47381] = 3, + [47493] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1686), 1, + sym_identifier, + ACTIONS(1688), 1, + anon_sym_LPAREN, + ACTIONS(1690), 1, + anon_sym_STAR, + ACTIONS(1696), 1, + anon_sym_LBRACK, + ACTIONS(1698), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1577), 1, + sym_list_splat_pattern, + STATE(1626), 1, + sym_primary_expression, + STATE(1992), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1694), 2, + anon_sym_match, + anon_sym_type, + STATE(1574), 2, + sym_attribute, + sym_subscript, + STATE(2076), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1692), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(959), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [47585] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1720), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65839,7 +66016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1694), 35, + ACTIONS(1722), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65875,11 +66052,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47437] = 3, + [47641] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 13, + ACTIONS(1724), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65893,7 +66070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 34, + ACTIONS(1726), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65928,16 +66105,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47493] = 3, + [47697] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 13, + ACTIONS(1702), 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, @@ -65946,7 +66122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 34, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65964,6 +66140,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, @@ -65981,11 +66158,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47549] = 3, + [47753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 13, + ACTIONS(1716), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65999,7 +66176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1694), 34, + ACTIONS(1718), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66034,13 +66211,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47605] = 3, + [47809] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 13, - sym__dedent, + ACTIONS(1728), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66052,7 +66229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 34, + ACTIONS(1730), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66087,11 +66264,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47661] = 3, + [47865] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, + ACTIONS(1732), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66104,7 +66281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1734), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66140,13 +66317,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47717] = 3, + [47921] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, - sym__dedent, + ACTIONS(1724), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66157,7 +66334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1720), 35, + ACTIONS(1726), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66169,13 +66346,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, @@ -66193,11 +66370,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47773] = 3, + [47977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1726), 13, + ACTIONS(1678), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66211,7 +66388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 34, + ACTIONS(1680), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66246,13 +66423,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47829] = 3, + [48033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 12, + ACTIONS(1724), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66263,7 +66440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1682), 35, + ACTIONS(1726), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66275,13 +66452,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, @@ -66299,13 +66476,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47885] = 3, + [48089] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1730), 12, - sym__dedent, + ACTIONS(1724), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66316,7 +66493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1728), 35, + ACTIONS(1726), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66352,13 +66529,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47941] = 3, + [48145] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, + ACTIONS(1716), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66369,7 +66546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1734), 35, + ACTIONS(1718), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66381,13 +66558,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, @@ -66405,16 +66582,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47997] = 3, + [48201] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1738), 13, + ACTIONS(1682), 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, @@ -66423,7 +66599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1736), 34, + ACTIONS(1684), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66441,6 +66617,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, @@ -66458,15 +66635,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48053] = 3, + [48257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 12, + ACTIONS(1736), 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, @@ -66475,7 +66653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1738), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66487,7 +66665,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, @@ -66511,15 +66688,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48109] = 3, + [48313] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1742), 12, + ACTIONS(1702), 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, @@ -66528,7 +66706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1740), 35, + ACTIONS(1700), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66546,7 +66724,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, @@ -66564,11 +66741,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48165] = 3, + [48369] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 12, + ACTIONS(1740), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66581,7 +66758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1742), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66617,11 +66794,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48221] = 3, + [48425] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1688), 12, + ACTIONS(1702), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66634,7 +66811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1686), 35, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66670,15 +66847,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48277] = 3, + [48481] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1744), 12, + ACTIONS(1728), 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, @@ -66687,7 +66865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1746), 35, + ACTIONS(1730), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66705,7 +66883,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, @@ -66723,15 +66900,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48333] = 3, + [48537] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1744), 12, - sym__dedent, + ACTIONS(1716), 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, @@ -66740,7 +66918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1746), 35, + ACTIONS(1718), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66758,7 +66936,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, @@ -66776,13 +66953,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48389] = 3, + [48593] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1750), 13, - sym__dedent, + ACTIONS(1702), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66794,7 +66971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1748), 34, + ACTIONS(1700), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66829,16 +67006,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48445] = 3, + [48649] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 13, + ACTIONS(1678), 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, @@ -66847,7 +67023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 34, + ACTIONS(1680), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66859,6 +67035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -66882,13 +67059,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48501] = 3, + [48705] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1732), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66899,7 +67076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1694), 35, + ACTIONS(1734), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66935,16 +67112,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48557] = 3, + [48761] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 13, + ACTIONS(1702), 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, @@ -66953,7 +67129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 34, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66965,6 +67141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -66988,13 +67165,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48613] = 3, + [48817] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, + ACTIONS(1720), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67005,7 +67182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1720), 35, + ACTIONS(1722), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67041,16 +67218,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48669] = 3, + [48873] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1726), 13, + ACTIONS(1744), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67059,7 +67235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 34, + ACTIONS(1746), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67077,6 +67253,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, @@ -67094,13 +67271,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48725] = 3, + [48929] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 12, + ACTIONS(1744), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67111,7 +67288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1682), 35, + ACTIONS(1746), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67123,13 +67300,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, @@ -67147,11 +67324,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48781] = 3, + [48985] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 13, + ACTIONS(1748), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67165,7 +67342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1682), 34, + ACTIONS(1750), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67200,11 +67377,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48837] = 3, + [49041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1730), 12, + ACTIONS(1716), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67217,7 +67394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1728), 35, + ACTIONS(1718), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67229,13 +67406,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, @@ -67253,13 +67430,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48893] = 3, + [49097] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1738), 13, + ACTIONS(1748), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -67271,7 +67448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1736), 34, + ACTIONS(1750), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67306,15 +67483,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48949] = 3, + [49153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1742), 12, + ACTIONS(1736), 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, @@ -67323,7 +67501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1740), 35, + ACTIONS(1738), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67341,7 +67519,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, @@ -67359,16 +67536,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49005] = 3, + [49209] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1750), 13, + ACTIONS(1706), 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, @@ -67377,7 +67553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1748), 34, + ACTIONS(1704), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67395,6 +67571,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, @@ -67412,11 +67589,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49061] = 3, + [49265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 12, + ACTIONS(1740), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67429,7 +67606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1682), 35, + ACTIONS(1742), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67441,13 +67618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67465,87 +67642,68 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49117] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, + [49321] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1720), 12, sym_string_start, - ACTIONS(1706), 1, - sym_identifier, - ACTIONS(1708), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1710), 1, anon_sym_STAR, - ACTIONS(1716), 1, anon_sym_LBRACK, - ACTIONS(1718), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1578), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(2046), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1714), 2, - anon_sym_match, - anon_sym_type, - STATE(1576), 2, - sym_attribute, - sym_subscript, - STATE(2052), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1712), 3, + sym_ellipsis, + sym_float, + ACTIONS(1722), 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, - ACTIONS(323), 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(959), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [49209] = 3, + [49377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 13, + ACTIONS(1710), 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, @@ -67554,7 +67712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 34, + ACTIONS(1708), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67572,6 +67730,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, @@ -67589,13 +67748,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49265] = 3, + [49433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1724), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67606,7 +67765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1694), 35, + ACTIONS(1726), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67618,13 +67777,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67642,11 +67801,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49321] = 3, + [49489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 12, + ACTIONS(1716), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67659,7 +67818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 35, + ACTIONS(1718), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67671,13 +67830,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67695,11 +67854,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49377] = 3, + [49545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 13, + ACTIONS(1714), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67713,7 +67872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1694), 34, + ACTIONS(1712), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67748,11 +67907,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49433] = 3, + [49601] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, + ACTIONS(1678), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67765,7 +67924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1680), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67777,13 +67936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67801,11 +67960,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49489] = 3, + [49657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 12, + ACTIONS(1720), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67818,7 +67977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 35, + ACTIONS(1722), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67830,13 +67989,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67854,11 +68013,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49545] = 3, + [49713] = 5, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(799), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, + ACTIONS(1752), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67871,7 +68034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1754), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67883,14 +68046,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, @@ -67907,11 +68067,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49601] = 3, + [49772] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, + ACTIONS(1758), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67924,7 +68084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1734), 35, + ACTIONS(1756), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67936,14 +68096,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, @@ -67960,11 +68119,65 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49657] = 3, + [49827] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(787), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 12, + 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(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, + 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, + [49886] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1766), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67977,7 +68190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1764), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67989,14 +68202,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, @@ -68013,15 +68225,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49713] = 5, + [49941] = 5, ACTIONS(1485), 1, anon_sym_else, - STATE(805), 1, + STATE(783), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1752), 12, + ACTIONS(1768), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68034,7 +68246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 32, + ACTIONS(1770), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68067,11 +68279,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49772] = 3, + [50000] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(757), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1756), 12, + ACTIONS(1772), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68084,7 +68300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1758), 34, + ACTIONS(1774), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68096,8 +68312,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, @@ -68119,15 +68333,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49827] = 5, - ACTIONS(1485), 1, - anon_sym_else, - STATE(775), 1, - sym_else_clause, + [50059] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1760), 12, + ACTIONS(1776), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68140,7 +68350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1762), 32, + ACTIONS(1778), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68152,6 +68362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68173,15 +68385,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49886] = 5, + [50114] = 5, ACTIONS(1485), 1, anon_sym_else, - STATE(760), 1, + STATE(830), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1764), 12, + ACTIONS(1780), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68194,7 +68406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1766), 32, + ACTIONS(1782), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68227,17 +68439,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49945] = 5, - ACTIONS(1489), 1, - anon_sym_finally, - STATE(746), 1, - sym_finally_clause, + [50173] = 5, + ACTIONS(1497), 1, + anon_sym_else, + STATE(773), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, + ACTIONS(1786), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68248,7 +68460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 32, + ACTIONS(1784), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68281,15 +68493,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50004] = 5, - ACTIONS(1489), 1, - anon_sym_finally, - STATE(763), 1, - sym_finally_clause, + [50232] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(751), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 12, + ACTIONS(1788), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68302,7 +68514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1774), 32, + ACTIONS(1790), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68335,15 +68547,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50063] = 5, - ACTIONS(1485), 1, - anon_sym_else, - STATE(744), 1, - sym_else_clause, + [50291] = 5, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(780), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1776), 12, + ACTIONS(1792), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68356,7 +68568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1794), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68389,11 +68601,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50122] = 3, + [50350] = 5, + ACTIONS(1497), 1, + anon_sym_else, + STATE(848), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, + ACTIONS(1760), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68406,7 +68622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1780), 34, + ACTIONS(1762), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68418,8 +68634,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, @@ -68441,15 +68655,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50177] = 5, - ACTIONS(1539), 1, + [50409] = 5, + ACTIONS(1497), 1, anon_sym_else, - STATE(736), 1, + STATE(792), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1786), 12, + ACTIONS(1788), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68462,7 +68676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 32, + ACTIONS(1790), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68495,11 +68709,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50236] = 3, + [50468] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(796), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1788), 12, + ACTIONS(1786), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68512,7 +68730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 34, + ACTIONS(1784), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68524,8 +68742,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, @@ -68547,11 +68763,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50291] = 3, + [50527] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1788), 12, + ACTIONS(1776), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68564,7 +68780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 34, + ACTIONS(1778), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68599,17 +68815,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50346] = 5, - ACTIONS(1485), 1, + [50582] = 5, + ACTIONS(1497), 1, anon_sym_else, - STATE(782), 1, + STATE(803), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1786), 12, + ACTIONS(1768), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68620,7 +68836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 32, + ACTIONS(1770), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68653,15 +68869,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50405] = 5, - ACTIONS(1539), 1, - anon_sym_else, - STATE(812), 1, - sym_else_clause, + [50641] = 5, + ACTIONS(1501), 1, + anon_sym_finally, + STATE(807), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1752), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68674,7 +68890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1792), 32, + ACTIONS(1754), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68707,17 +68923,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50464] = 5, - ACTIONS(1539), 1, - anon_sym_else, - STATE(816), 1, - sym_else_clause, + [50700] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1752), 12, - sym__dedent, + ACTIONS(1766), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68728,7 +68940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 32, + ACTIONS(1764), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68740,6 +68952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68761,13 +68975,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50523] = 3, + [50755] = 5, + ACTIONS(1497), 1, + anon_sym_else, + STATE(788), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, + ACTIONS(1772), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68778,7 +68996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1780), 34, + ACTIONS(1774), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68790,8 +69008,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, @@ -68813,15 +69029,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50578] = 5, - ACTIONS(1485), 1, - anon_sym_else, - STATE(771), 1, - sym_else_clause, + [50814] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1758), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68834,7 +69046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1792), 32, + ACTIONS(1756), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68846,6 +69058,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68867,11 +69081,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50637] = 3, + [50869] = 5, + ACTIONS(1497), 1, + anon_sym_else, + STATE(730), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1756), 12, + ACTIONS(1780), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68884,7 +69102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1758), 34, + ACTIONS(1782), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68896,8 +69114,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, @@ -68919,15 +69135,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50692] = 5, - ACTIONS(1539), 1, - anon_sym_else, - STATE(831), 1, - sym_else_clause, + [50928] = 5, + ACTIONS(1501), 1, + anon_sym_finally, + STATE(842), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1776), 12, + ACTIONS(1792), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68940,7 +69156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1794), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68973,15 +69189,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50751] = 5, - ACTIONS(1543), 1, - anon_sym_finally, - STATE(833), 1, - sym_finally_clause, + [50987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, + ACTIONS(1798), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68994,7 +69206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 32, + ACTIONS(1796), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69011,6 +69223,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, @@ -69027,17 +69240,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50810] = 5, - ACTIONS(1539), 1, - anon_sym_else, - STATE(847), 1, - sym_else_clause, + [51041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1764), 12, - sym__dedent, + ACTIONS(1798), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69048,7 +69257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1766), 32, + ACTIONS(1796), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69065,6 +69274,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, @@ -69081,15 +69291,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50869] = 5, - ACTIONS(1543), 1, - anon_sym_finally, - STATE(769), 1, - sym_finally_clause, + [51095] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 12, + ACTIONS(1802), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69102,7 +69308,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, @@ -69119,6 +69325,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, @@ -69135,17 +69342,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50928] = 5, - ACTIONS(1539), 1, - anon_sym_else, - STATE(800), 1, - sym_else_clause, + [51149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1760), 12, - sym__dedent, + ACTIONS(1802), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69156,7 +69359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1762), 32, + ACTIONS(1800), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69173,6 +69376,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, @@ -69189,62 +69393,132 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50987] = 22, - ACTIONS(310), 1, + [51203] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1796), 1, + ACTIONS(1804), 1, sym_identifier, - ACTIONS(1798), 1, + ACTIONS(1806), 1, anon_sym_LPAREN, - ACTIONS(1800), 1, + ACTIONS(1808), 1, anon_sym_RPAREN, - ACTIONS(1802), 1, + ACTIONS(1810), 1, anon_sym_STAR, - ACTIONS(1808), 1, + ACTIONS(1816), 1, anon_sym_LBRACK, - ACTIONS(1810), 1, + ACTIONS(1818), 1, anon_sym_await, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1590), 1, + STATE(1606), 1, + sym_primary_expression, + STATE(1614), 1, sym_list_splat_pattern, - STATE(1615), 1, + STATE(2250), 1, + sym_pattern, + STATE(2762), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1814), 2, + anon_sym_match, + anon_sym_type, + STATE(1612), 2, + sym_attribute, + sym_subscript, + STATE(2596), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1812), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [51295] = 22, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1804), 1, + sym_identifier, + ACTIONS(1806), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + anon_sym_STAR, + ACTIONS(1816), 1, + anon_sym_LBRACK, + ACTIONS(1818), 1, + anon_sym_await, + ACTIONS(1820), 1, + anon_sym_RPAREN, + STATE(1033), 1, + sym_string, + STATE(1606), 1, sym_primary_expression, - STATE(2340), 1, + STATE(1614), 1, + sym_list_splat_pattern, + STATE(2250), 1, sym_pattern, - STATE(2602), 1, + STATE(2629), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(1806), 2, + ACTIONS(1814), 2, anon_sym_match, anon_sym_type, - STATE(1598), 2, + STATE(1612), 2, sym_attribute, sym_subscript, - STATE(2573), 2, + STATE(2596), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1804), 3, + ACTIONS(1812), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -69259,11 +69533,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [51079] = 3, + [51387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1812), 12, + ACTIONS(1822), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69276,7 +69550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1814), 33, + ACTIONS(1824), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69293,7 +69567,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, @@ -69310,83 +69583,63 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51133] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, + [51440] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1828), 12, + sym__dedent, sym_string_start, - ACTIONS(1796), 1, - sym_identifier, - ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(1802), 1, anon_sym_STAR, - ACTIONS(1808), 1, anon_sym_LBRACK, - ACTIONS(1810), 1, - anon_sym_await, - ACTIONS(1816), 1, - anon_sym_RPAREN, - STATE(1010), 1, - sym_string, - STATE(1590), 1, - sym_list_splat_pattern, - STATE(1615), 1, - sym_primary_expression, - STATE(2340), 1, - sym_pattern, - STATE(2625), 1, - sym__patterns, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1806), 2, - anon_sym_match, - anon_sym_type, - STATE(1598), 2, - sym_attribute, - sym_subscript, - STATE(2573), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1804), 3, + sym_ellipsis, + sym_float, + ACTIONS(1826), 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(323), 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(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [51225] = 3, + [51493] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1818), 12, + ACTIONS(1832), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69397,7 +69650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1820), 33, + ACTIONS(1830), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69414,7 +69667,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, @@ -69431,11 +69683,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51279] = 3, + [51546] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1818), 12, + ACTIONS(1752), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69448,7 +69700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1820), 33, + ACTIONS(1754), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69465,7 +69717,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, @@ -69482,11 +69733,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51333] = 3, + [51599] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1812), 12, + ACTIONS(1481), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69499,7 +69750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1814), 33, + ACTIONS(1483), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69516,7 +69767,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, @@ -69533,13 +69783,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51387] = 3, + [51652] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1824), 12, - sym__dedent, + ACTIONS(1834), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69550,7 +69800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1822), 32, + ACTIONS(1836), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69583,11 +69833,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51440] = 3, + [51705] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, + ACTIONS(1495), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69600,7 +69850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 32, + ACTIONS(1493), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69633,13 +69883,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51493] = 3, + [51758] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1826), 12, + ACTIONS(1840), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69650,7 +69900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1828), 32, + ACTIONS(1838), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69683,11 +69933,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51546] = 3, + [51811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1832), 12, + ACTIONS(1844), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69700,7 +69950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1830), 32, + ACTIONS(1842), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69733,13 +69983,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51599] = 3, + [51864] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1834), 12, + ACTIONS(1848), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69750,7 +70000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1836), 32, + ACTIONS(1846), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69783,13 +70033,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51652] = 3, + [51917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1838), 12, + ACTIONS(1852), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69800,7 +70050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1840), 32, + ACTIONS(1850), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69833,13 +70083,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51705] = 3, + [51970] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1854), 1, + sym_identifier, + ACTIONS(1856), 1, + anon_sym_LPAREN, + ACTIONS(1858), 1, + anon_sym_STAR, + ACTIONS(1864), 1, + anon_sym_LBRACK, + ACTIONS(1866), 1, + anon_sym_RBRACK, + ACTIONS(1868), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1590), 1, + sym_list_splat_pattern, + STATE(1625), 1, + sym_primary_expression, + STATE(2535), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1842), 12, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1862), 2, + anon_sym_match, + anon_sym_type, + STATE(1589), 2, + sym_attribute, + sym_subscript, + STATE(2532), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1860), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [52059] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1872), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69850,7 +70168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1844), 32, + ACTIONS(1870), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69883,11 +70201,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51758] = 3, + [52112] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1846), 12, + ACTIONS(1874), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69900,7 +70218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1848), 32, + ACTIONS(1876), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69933,13 +70251,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51811] = 3, + [52165] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1852), 12, - sym__dedent, + ACTIONS(1878), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69950,7 +70268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(1880), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69983,13 +70301,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51864] = 3, + [52218] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 12, + ACTIONS(1884), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70000,7 +70318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1483), 32, + ACTIONS(1882), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70033,11 +70351,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51917] = 3, + [52271] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1854), 12, + ACTIONS(1886), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70050,7 +70368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1856), 32, + ACTIONS(1888), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70083,13 +70401,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51970] = 3, + [52324] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1860), 12, - sym__dedent, + ACTIONS(1890), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70100,7 +70418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1858), 32, + ACTIONS(1892), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70133,13 +70451,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52023] = 3, + [52377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, + ACTIONS(1896), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70150,7 +70468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1864), 32, + ACTIONS(1894), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70183,11 +70501,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52076] = 3, + [52430] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1868), 12, + ACTIONS(1900), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70200,7 +70518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1866), 32, + ACTIONS(1898), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70233,147 +70551,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52129] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, - anon_sym_LPAREN, - ACTIONS(1878), 1, - anon_sym_LBRACK, - ACTIONS(1880), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(2485), 1, - sym_pattern, - STATE(2774), 1, - sym_pattern_list, + [52483] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1876), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1874), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [52218] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1900), 12, sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1878), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1880), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(2470), 1, - sym_pattern, - STATE(2735), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1876), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1874), 3, + sym_ellipsis, + sym_float, + ACTIONS(1898), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(323), 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(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [52307] = 3, + [52536] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1882), 12, + ACTIONS(1896), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70386,7 +70618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1884), 32, + ACTIONS(1894), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70419,11 +70651,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52360] = 3, + [52589] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1427), 1, + anon_sym_STAR, + ACTIONS(1902), 1, + sym_identifier, + ACTIONS(1904), 1, + anon_sym_LPAREN, + ACTIONS(1910), 1, + anon_sym_in, + ACTIONS(1912), 1, + anon_sym_LBRACK, + ACTIONS(1914), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1595), 1, + sym_primary_expression, + STATE(1609), 1, + sym_list_splat_pattern, + STATE(1643), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1908), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1644), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1906), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [52678] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1886), 12, + ACTIONS(1916), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70436,7 +70736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1888), 32, + ACTIONS(1918), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70469,11 +70769,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52413] = 3, + [52731] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1890), 12, + ACTIONS(1920), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70486,7 +70786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1892), 32, + ACTIONS(1922), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70519,11 +70819,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52466] = 3, + [52784] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 12, + ACTIONS(1924), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70536,7 +70836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1774), 32, + ACTIONS(1926), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70569,13 +70869,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52519] = 3, + [52837] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1894), 12, + ACTIONS(1890), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70586,7 +70886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1896), 32, + ACTIONS(1892), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70619,11 +70919,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52572] = 3, + [52890] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1898), 12, + ACTIONS(1828), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70636,7 +70936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1900), 32, + ACTIONS(1826), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70669,11 +70969,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52625] = 3, + [52943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1902), 12, + ACTIONS(1928), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70686,7 +70986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1904), 32, + ACTIONS(1930), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70719,11 +71019,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52678] = 3, + [52996] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1906), 12, + ACTIONS(1932), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70736,7 +71036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1908), 32, + ACTIONS(1934), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70769,11 +71069,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52731] = 3, + [53049] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1912), 12, + ACTIONS(1886), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70786,7 +71086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1910), 32, + ACTIONS(1888), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70819,11 +71119,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52784] = 3, + [53102] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1914), 12, + ACTIONS(1936), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70836,7 +71136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1916), 32, + ACTIONS(1938), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70869,13 +71169,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52837] = 3, + [53155] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1920), 12, - sym__dedent, + ACTIONS(1940), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70886,7 +71186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1918), 32, + ACTIONS(1942), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70919,11 +71219,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52890] = 3, + [53208] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1922), 12, + ACTIONS(1944), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70936,7 +71236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1924), 32, + ACTIONS(1946), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70969,11 +71269,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52943] = 3, + [53261] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1926), 12, + ACTIONS(1948), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70986,7 +71286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1928), 32, + ACTIONS(1950), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71019,13 +71319,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52996] = 3, + [53314] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 12, + ACTIONS(1954), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71036,7 +71336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1952), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71069,11 +71369,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53049] = 3, + [53367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1934), 12, + ACTIONS(1956), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71086,7 +71386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1936), 32, + ACTIONS(1958), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71119,63 +71419,149 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53102] = 3, + [53420] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1804), 1, + sym_identifier, + ACTIONS(1806), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + anon_sym_STAR, + ACTIONS(1816), 1, + anon_sym_LBRACK, + ACTIONS(1818), 1, + anon_sym_await, + ACTIONS(1866), 1, + anon_sym_RPAREN, + STATE(1033), 1, + sym_string, + STATE(1606), 1, + sym_primary_expression, + STATE(1614), 1, + sym_list_splat_pattern, + STATE(2562), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1938), 12, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1814), 2, + anon_sym_match, + anon_sym_type, + STATE(1612), 2, + sym_attribute, + sym_subscript, + STATE(2596), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1812), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [53509] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1804), 1, + sym_identifier, + ACTIONS(1806), 1, anon_sym_LPAREN, + ACTIONS(1810), 1, anon_sym_STAR, + ACTIONS(1816), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1818), 1, + anon_sym_await, + ACTIONS(1960), 1, + anon_sym_RPAREN, + STATE(1033), 1, + sym_string, + STATE(1606), 1, + sym_primary_expression, + STATE(1614), 1, + sym_list_splat_pattern, + STATE(2562), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1814), 2, + anon_sym_match, + anon_sym_type, + STATE(1612), 2, + sym_attribute, + sym_subscript, + STATE(2596), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1940), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1812), 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(320), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [53155] = 3, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [53598] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1942), 12, + ACTIONS(1964), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71186,7 +71572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1944), 32, + ACTIONS(1962), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71219,13 +71605,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53208] = 3, + [53651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1948), 12, - sym__dedent, + ACTIONS(1966), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71236,7 +71622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1946), 32, + ACTIONS(1968), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71269,11 +71655,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53261] = 3, + [53704] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1427), 1, + anon_sym_STAR, + ACTIONS(1902), 1, + sym_identifier, + ACTIONS(1904), 1, + anon_sym_LPAREN, + ACTIONS(1912), 1, + anon_sym_LBRACK, + ACTIONS(1914), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1595), 1, + sym_primary_expression, + STATE(1609), 1, + sym_list_splat_pattern, + STATE(2346), 1, + sym_pattern, + STATE(2677), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1950), 12, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1908), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1644), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1906), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [53793] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1970), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71286,7 +71740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1952), 32, + ACTIONS(1972), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71319,13 +71773,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53314] = 3, + [53846] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, + ACTIONS(1976), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71336,7 +71790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(1974), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71369,13 +71823,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53367] = 3, + [53899] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, + ACTIONS(1980), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71386,7 +71840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1960), 32, + ACTIONS(1978), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71419,13 +71873,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53420] = 3, + [53952] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1962), 12, + ACTIONS(1984), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71436,7 +71890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1964), 32, + ACTIONS(1982), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71469,13 +71923,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53473] = 3, + [54005] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 12, + ACTIONS(1928), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71486,7 +71940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1968), 32, + ACTIONS(1930), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71519,128 +71973,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53526] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1796), 1, - sym_identifier, - ACTIONS(1798), 1, - anon_sym_LPAREN, - ACTIONS(1802), 1, - anon_sym_STAR, - ACTIONS(1808), 1, - anon_sym_LBRACK, - ACTIONS(1810), 1, - anon_sym_await, - ACTIONS(1970), 1, - anon_sym_RPAREN, - STATE(1010), 1, - sym_string, - STATE(1590), 1, - sym_list_splat_pattern, - STATE(1615), 1, - sym_primary_expression, - STATE(2528), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1806), 2, - anon_sym_match, - anon_sym_type, - STATE(1598), 2, - sym_attribute, - sym_subscript, - STATE(2573), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1804), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [53615] = 21, - ACTIONS(310), 1, + [54058] = 21, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(1870), 1, + ACTIONS(1902), 1, sym_identifier, - ACTIONS(1872), 1, + ACTIONS(1904), 1, anon_sym_LPAREN, - ACTIONS(1878), 1, + ACTIONS(1912), 1, anon_sym_LBRACK, - ACTIONS(1880), 1, + ACTIONS(1914), 1, anon_sym_await, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, + STATE(1595), 1, sym_primary_expression, - STATE(2403), 1, + STATE(1609), 1, + sym_list_splat_pattern, + STATE(2458), 1, sym_pattern, - STATE(2632), 1, + STATE(2710), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(1876), 2, + ACTIONS(1908), 2, anon_sym_match, anon_sym_type, STATE(1613), 2, sym_attribute, sym_subscript, - STATE(1640), 2, + STATE(1644), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1874), 3, + ACTIONS(1906), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -71655,11 +72041,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [53704] = 3, + [54147] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, + ACTIONS(1940), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71672,7 +72058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(1942), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71705,13 +72091,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53757] = 3, + [54200] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, - sym__dedent, + ACTIONS(1986), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71722,7 +72108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1960), 32, + ACTIONS(1988), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71755,11 +72141,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53810] = 3, + [54253] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1972), 12, + ACTIONS(1990), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71772,7 +72158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1974), 32, + ACTIONS(1992), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71805,13 +72191,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53863] = 3, + [54306] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1824), 12, + ACTIONS(1878), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71822,7 +72208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1822), 32, + ACTIONS(1880), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71855,11 +72241,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53916] = 3, + [54359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1948), 12, + ACTIONS(1994), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71872,7 +72258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1946), 32, + ACTIONS(1996), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71905,13 +72291,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53969] = 3, + [54412] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1976), 12, + ACTIONS(1874), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71922,7 +72308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1978), 32, + ACTIONS(1876), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71955,13 +72341,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54022] = 3, + [54465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1980), 12, + ACTIONS(1970), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71972,7 +72358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1982), 32, + ACTIONS(1972), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72005,11 +72391,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54075] = 3, + [54518] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1984), 12, + ACTIONS(1998), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72022,7 +72408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1986), 32, + ACTIONS(2000), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72055,13 +72441,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54128] = 3, + [54571] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1988), 12, + ACTIONS(1948), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72072,7 +72458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1990), 32, + ACTIONS(1950), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72105,13 +72491,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54181] = 3, + [54624] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1832), 12, + ACTIONS(1944), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72122,7 +72508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1830), 32, + ACTIONS(1946), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72155,11 +72541,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54234] = 3, + [54677] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1427), 1, + anon_sym_STAR, + ACTIONS(1902), 1, + sym_identifier, + ACTIONS(1904), 1, + anon_sym_LPAREN, + ACTIONS(1912), 1, + anon_sym_LBRACK, + ACTIONS(1914), 1, + anon_sym_await, + ACTIONS(2002), 1, + anon_sym_in, + STATE(1033), 1, + sym_string, + STATE(1595), 1, + sym_primary_expression, + STATE(1609), 1, + sym_list_splat_pattern, + STATE(1643), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1992), 12, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1908), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1644), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1906), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [54766] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2004), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72172,7 +72626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1994), 32, + ACTIONS(2006), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72205,147 +72659,161 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54287] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, + [54819] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1932), 12, + sym__dedent, sym_string_start, - ACTIONS(1796), 1, - sym_identifier, - ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(1802), 1, anon_sym_STAR, - ACTIONS(1808), 1, anon_sym_LBRACK, - ACTIONS(1810), 1, - anon_sym_await, - ACTIONS(1996), 1, - anon_sym_RPAREN, - STATE(1010), 1, - sym_string, - STATE(1590), 1, - sym_list_splat_pattern, - STATE(1615), 1, - sym_primary_expression, - STATE(2528), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1806), 2, - anon_sym_match, - anon_sym_type, - STATE(1598), 2, - sym_attribute, - sym_subscript, - STATE(2573), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1804), 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(323), 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(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [54376] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, - anon_sym_LPAREN, - ACTIONS(1878), 1, - anon_sym_LBRACK, - ACTIONS(1880), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(2270), 1, - sym_pattern, - STATE(2729), 1, - sym_pattern_list, + [54872] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(1956), 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(1876), 2, + ACTIONS(1958), 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(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 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, + [54925] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1924), 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(1874), 3, + sym_ellipsis, + sym_float, + ACTIONS(1926), 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(323), 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(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [54465] = 3, + [54978] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1852), 12, + ACTIONS(2008), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72358,7 +72826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(2010), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72391,13 +72859,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54518] = 3, + [55031] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1860), 12, + ACTIONS(1916), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72408,7 +72876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1858), 32, + ACTIONS(1918), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72441,11 +72909,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54571] = 3, + [55084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1868), 12, + ACTIONS(2012), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72458,7 +72926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1866), 32, + ACTIONS(2014), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72491,11 +72959,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54624] = 3, + [55137] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1517), 12, + ACTIONS(2016), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72508,7 +72976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1519), 32, + ACTIONS(2018), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72541,13 +73009,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54677] = 3, + [55190] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, + ACTIONS(1986), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72558,7 +73026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2000), 32, + ACTIONS(1988), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72591,13 +73059,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54730] = 3, + [55243] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1962), 12, - sym__dedent, + ACTIONS(1984), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72608,7 +73076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1964), 32, + ACTIONS(1982), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72641,13 +73109,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54783] = 3, + [55296] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 12, - sym__dedent, + ACTIONS(1980), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72658,7 +73126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1968), 32, + ACTIONS(1978), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72691,11 +73159,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54836] = 3, + [55349] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1912), 12, + ACTIONS(1976), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72708,7 +73176,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, @@ -72741,13 +73209,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54889] = 3, + [55402] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1950), 12, - sym__dedent, + ACTIONS(2020), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72758,7 +73226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1952), 32, + ACTIONS(2022), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72791,11 +73259,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54942] = 3, + [55455] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2002), 12, + ACTIONS(1792), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72808,7 +73276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2004), 32, + ACTIONS(1794), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72841,13 +73309,149 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54995] = 3, + [55508] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1427), 1, + anon_sym_STAR, + ACTIONS(1902), 1, + sym_identifier, + ACTIONS(1904), 1, + anon_sym_LPAREN, + ACTIONS(1912), 1, + anon_sym_LBRACK, + ACTIONS(1914), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1595), 1, + sym_primary_expression, + STATE(1609), 1, + sym_list_splat_pattern, + STATE(2337), 1, + sym_pattern, + STATE(2687), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1920), 12, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1908), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1644), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1906), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [55597] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1427), 1, + anon_sym_STAR, + ACTIONS(1902), 1, + sym_identifier, + ACTIONS(1904), 1, + anon_sym_LPAREN, + ACTIONS(1912), 1, + anon_sym_LBRACK, + ACTIONS(1914), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1595), 1, + sym_primary_expression, + STATE(1609), 1, + sym_list_splat_pattern, + STATE(2317), 1, + sym_pattern, + STATE(2696), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1908), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1644), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1906), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [55686] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1998), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72858,7 +73462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1918), 32, + ACTIONS(2000), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72891,11 +73495,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55048] = 3, + [55739] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2006), 12, + ACTIONS(1964), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72908,7 +73512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2008), 32, + ACTIONS(1962), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72941,75 +73545,57 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55101] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, - anon_sym_LPAREN, - ACTIONS(1878), 1, - anon_sym_LBRACK, - ACTIONS(1880), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(2495), 1, - sym_pattern, - STATE(2790), 1, - sym_pattern_list, + [55792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1876), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(2026), 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(1874), 3, + sym_ellipsis, + sym_float, + ACTIONS(2024), 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(323), 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(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [55190] = 3, + [55845] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -73026,7 +73612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2010), 32, + ACTIONS(2014), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73059,79 +73645,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55243] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, + [55898] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2020), 12, + sym__dedent, sym_string_start, - ACTIONS(1996), 1, - anon_sym_RBRACK, - ACTIONS(2014), 1, - sym_identifier, - ACTIONS(2016), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, anon_sym_STAR, - ACTIONS(2024), 1, anon_sym_LBRACK, - ACTIONS(2026), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1596), 1, - sym_list_splat_pattern, - STATE(1619), 1, - sym_primary_expression, - STATE(2514), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2022), 2, - anon_sym_match, - anon_sym_type, - STATE(1597), 2, - sym_attribute, - sym_subscript, - STATE(2570), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2020), 3, + 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, - ACTIONS(323), 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(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [55332] = 3, + [55951] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2028), 12, + ACTIONS(1884), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73144,7 +73712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2030), 32, + ACTIONS(1882), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73177,128 +73745,160 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55385] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, - anon_sym_LPAREN, - ACTIONS(1878), 1, - anon_sym_LBRACK, - ACTIONS(1880), 1, - anon_sym_await, - ACTIONS(2032), 1, - anon_sym_in, - STATE(1010), 1, - sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(1639), 1, - sym_pattern, + [56004] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(1792), 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(1876), 2, + ACTIONS(1794), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 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, + [56057] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2026), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1874), 3, + sym_ellipsis, + sym_float, + ACTIONS(2024), 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(323), 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(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [55474] = 21, - ACTIONS(310), 1, + [56110] = 21, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1970), 1, - anon_sym_RBRACK, - ACTIONS(2014), 1, + ACTIONS(1427), 1, + anon_sym_STAR, + ACTIONS(1902), 1, sym_identifier, - ACTIONS(2016), 1, + ACTIONS(1904), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, - anon_sym_STAR, - ACTIONS(2024), 1, + ACTIONS(1912), 1, anon_sym_LBRACK, - ACTIONS(2026), 1, + ACTIONS(1914), 1, anon_sym_await, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1596), 1, - sym_list_splat_pattern, - STATE(1619), 1, + STATE(1595), 1, sym_primary_expression, - STATE(2514), 1, + STATE(1609), 1, + sym_list_splat_pattern, + STATE(2409), 1, sym_pattern, + STATE(2613), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(2022), 2, + ACTIONS(1908), 2, anon_sym_match, anon_sym_type, - STATE(1597), 2, + STATE(1613), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(1644), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2020), 3, + ACTIONS(1906), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -73313,11 +73913,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [55563] = 3, + [56199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1980), 12, + ACTIONS(2030), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73330,7 +73930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1982), 32, + ACTIONS(2028), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73363,11 +73963,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55616] = 3, + [56252] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1976), 12, + ACTIONS(2034), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73380,7 +73980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1978), 32, + ACTIONS(2032), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73413,11 +74013,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55669] = 3, + [56305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1984), 12, + ACTIONS(1834), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73430,7 +74030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1986), 32, + ACTIONS(1836), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73463,11 +74063,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55722] = 3, + [56358] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1517), 12, + ACTIONS(2038), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73480,7 +74080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1519), 32, + ACTIONS(2036), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73513,11 +74113,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55775] = 3, + [56411] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2034), 12, + ACTIONS(2042), 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(2040), 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, + [56464] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1872), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73530,7 +74180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2036), 32, + ACTIONS(1870), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73563,11 +74213,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55828] = 3, + [56517] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2038), 12, + ACTIONS(1852), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73580,7 +74230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2040), 32, + ACTIONS(1850), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73613,13 +74263,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55881] = 3, + [56570] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2002), 12, - sym__dedent, + ACTIONS(1954), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73630,7 +74280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2004), 32, + ACTIONS(1952), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73663,13 +74313,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55934] = 3, + [56623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2006), 12, - sym__dedent, + ACTIONS(2030), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73680,7 +74330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2008), 32, + ACTIONS(2028), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73713,11 +74363,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55987] = 3, + [56676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, + ACTIONS(1495), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73730,7 +74380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2000), 32, + ACTIONS(1493), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73763,11 +74413,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56040] = 3, + [56729] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2042), 12, + ACTIONS(1752), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73780,7 +74430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2044), 32, + ACTIONS(1754), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73813,11 +74463,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56093] = 3, + [56782] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2046), 12, + ACTIONS(2034), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73830,7 +74480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2048), 32, + ACTIONS(2032), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73863,11 +74513,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56146] = 3, + [56835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2034), 12, + ACTIONS(1920), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73880,7 +74530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2036), 32, + ACTIONS(1922), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73913,11 +74563,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56199] = 3, + [56888] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1972), 12, + ACTIONS(2046), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73930,7 +74580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1974), 32, + ACTIONS(2044), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73963,13 +74613,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56252] = 3, + [56941] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2052), 12, - sym__dedent, + ACTIONS(1848), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73980,7 +74630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2050), 32, + ACTIONS(1846), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74013,13 +74663,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56305] = 3, + [56994] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1826), 12, - sym__dedent, + ACTIONS(2038), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74030,7 +74680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1828), 32, + ACTIONS(2036), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74063,13 +74713,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56358] = 3, + [57047] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 12, - sym__dedent, + ACTIONS(1840), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74080,7 +74730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1838), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74113,13 +74763,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56411] = 3, + [57100] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2038), 12, - sym__dedent, + ACTIONS(1844), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74130,7 +74780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2040), 32, + ACTIONS(1842), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74163,11 +74813,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56464] = 3, + [57153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2012), 12, + ACTIONS(1832), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74180,7 +74830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2010), 32, + ACTIONS(1830), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74213,13 +74863,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56517] = 3, + [57206] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, - sym__dedent, + ACTIONS(2048), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74230,7 +74880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 32, + ACTIONS(2050), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74263,11 +74913,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56570] = 3, + [57259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 12, + ACTIONS(2054), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74280,7 +74930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1483), 32, + ACTIONS(2052), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74313,11 +74963,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56623] = 3, + [57312] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1922), 12, + ACTIONS(2048), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74330,7 +74980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1924), 32, + ACTIONS(2050), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74363,13 +75013,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56676] = 3, + [57365] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1992), 12, - sym__dedent, + ACTIONS(2054), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74380,7 +75030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1994), 32, + ACTIONS(2052), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74413,13 +75063,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56729] = 3, + [57418] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(2042), 12, - sym__dedent, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74430,7 +75080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2044), 32, + ACTIONS(2040), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74463,13 +75113,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56782] = 3, + [57471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(2046), 12, - sym__dedent, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74480,7 +75130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2048), 32, + ACTIONS(2044), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74513,11 +75163,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56835] = 3, + [57524] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2028), 12, + ACTIONS(1936), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74530,7 +75180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2030), 32, + ACTIONS(1938), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74563,13 +75213,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56888] = 3, + [57577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1834), 12, - sym__dedent, + ACTIONS(1481), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74580,7 +75230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1836), 32, + ACTIONS(1483), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74613,11 +75263,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56941] = 3, + [57630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1838), 12, + ACTIONS(1966), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74630,7 +75280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1840), 32, + ACTIONS(1968), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74663,11 +75313,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56994] = 3, + [57683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1842), 12, + ACTIONS(1990), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74680,7 +75330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1844), 32, + ACTIONS(1992), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74713,11 +75363,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57047] = 3, + [57736] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1427), 1, + anon_sym_STAR, + ACTIONS(1902), 1, + sym_identifier, + ACTIONS(1904), 1, + anon_sym_LPAREN, + ACTIONS(1912), 1, + anon_sym_LBRACK, + ACTIONS(1914), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1595), 1, + sym_primary_expression, + STATE(1609), 1, + sym_list_splat_pattern, + STATE(2279), 1, + sym_pattern, + STATE(2721), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1846), 12, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1908), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1644), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1906), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [57825] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1994), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74730,7 +75448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1848), 32, + ACTIONS(1996), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74763,11 +75481,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57100] = 3, + [57878] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1854), 12, + ACTIONS(1822), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74780,7 +75498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1856), 32, + ACTIONS(1824), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74813,11 +75531,283 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57153] = 3, + [57931] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1427), 1, + anon_sym_STAR, + ACTIONS(1902), 1, + sym_identifier, + ACTIONS(1904), 1, + anon_sym_LPAREN, + ACTIONS(1912), 1, + anon_sym_LBRACK, + ACTIONS(1914), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1595), 1, + sym_primary_expression, + STATE(1609), 1, + sym_list_splat_pattern, + STATE(2255), 1, + sym_pattern, + STATE(2750), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1908), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1644), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1906), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [58020] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1427), 1, + anon_sym_STAR, + ACTIONS(1902), 1, + sym_identifier, + ACTIONS(1904), 1, + anon_sym_LPAREN, + ACTIONS(1912), 1, + anon_sym_LBRACK, + ACTIONS(1914), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1595), 1, + sym_primary_expression, + STATE(1609), 1, + sym_list_splat_pattern, + STATE(2277), 1, + sym_pattern, + STATE(2723), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1908), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1644), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1906), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [58109] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1427), 1, + anon_sym_STAR, + ACTIONS(1902), 1, + sym_identifier, + ACTIONS(1904), 1, + anon_sym_LPAREN, + ACTIONS(1912), 1, + anon_sym_LBRACK, + ACTIONS(1914), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1595), 1, + sym_primary_expression, + STATE(1609), 1, + sym_list_splat_pattern, + STATE(2242), 1, + sym_pattern, + STATE(2787), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1908), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1644), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1906), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [58198] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1854), 1, + sym_identifier, + ACTIONS(1856), 1, + anon_sym_LPAREN, + ACTIONS(1858), 1, + anon_sym_STAR, + ACTIONS(1864), 1, + anon_sym_LBRACK, + ACTIONS(1868), 1, + anon_sym_await, + ACTIONS(1960), 1, + anon_sym_RBRACK, + STATE(1033), 1, + sym_string, + STATE(1590), 1, + sym_list_splat_pattern, + STATE(1625), 1, + sym_primary_expression, + STATE(2535), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1862), 2, + anon_sym_match, + anon_sym_type, + STATE(1589), 2, + sym_attribute, + sym_subscript, + STATE(2532), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1860), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [58287] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2004), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74830,7 +75820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1864), 32, + ACTIONS(2006), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74863,11 +75853,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57206] = 3, + [58340] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1882), 12, + ACTIONS(2008), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74880,7 +75870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1884), 32, + ACTIONS(2010), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74913,11 +75903,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57259] = 3, + [58393] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1886), 12, + ACTIONS(2016), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74930,7 +75920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1888), 32, + ACTIONS(2018), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74963,610 +75953,520 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57312] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1890), 12, - sym__dedent, + [58446] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1427), 1, anon_sym_STAR, + ACTIONS(1902), 1, + sym_identifier, + ACTIONS(1904), 1, + anon_sym_LPAREN, + ACTIONS(1912), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1914), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1595), 1, + sym_primary_expression, + STATE(1609), 1, + sym_list_splat_pattern, + STATE(2241), 1, + sym_pattern, + STATE(2791), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1908), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1644), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1892), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1906), 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(320), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [57365] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1772), 12, - sym__dedent, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [58535] = 20, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, sym_string_start, + ACTIONS(1854), 1, + sym_identifier, + ACTIONS(1856), 1, anon_sym_LPAREN, + ACTIONS(1858), 1, anon_sym_STAR, + ACTIONS(1864), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1868), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1590), 1, + sym_list_splat_pattern, + STATE(1625), 1, + sym_primary_expression, + STATE(2535), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1862), 2, + anon_sym_match, + anon_sym_type, + STATE(1589), 2, + sym_attribute, + sym_subscript, + STATE(2532), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1774), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1860), 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(320), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [57418] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1894), 12, - sym__dedent, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [58621] = 20, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, sym_string_start, + ACTIONS(1804), 1, + sym_identifier, + ACTIONS(1806), 1, anon_sym_LPAREN, + ACTIONS(1810), 1, anon_sym_STAR, + ACTIONS(1816), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1818), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1606), 1, + sym_primary_expression, + STATE(1614), 1, + sym_list_splat_pattern, + STATE(2562), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1814), 2, + anon_sym_match, + anon_sym_type, + STATE(1612), 2, + sym_attribute, + sym_subscript, + STATE(2596), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1896), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1812), 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(320), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [57471] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1898), 12, - sym__dedent, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [58707] = 20, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1427), 1, anon_sym_STAR, + ACTIONS(1902), 1, + sym_identifier, + ACTIONS(1904), 1, + anon_sym_LPAREN, + ACTIONS(1912), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1914), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1595), 1, + sym_primary_expression, + STATE(1609), 1, + sym_list_splat_pattern, + STATE(1643), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1908), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1644), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1900), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1906), 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(320), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [57524] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1902), 12, - sym__dedent, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [58793] = 20, + ACTIONS(17), 1, + anon_sym_STAR, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, sym_string_start, + ACTIONS(957), 1, + sym_identifier, + ACTIONS(961), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(969), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(971), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1306), 1, + sym_list_splat_pattern, + STATE(1618), 1, + sym_pattern, + STATE(1621), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(967), 2, + anon_sym_match, + anon_sym_type, + STATE(1305), 2, + sym_attribute, + sym_subscript, + STATE(1602), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1904), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(965), 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(320), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [57577] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1906), 12, - sym__dedent, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [58879] = 20, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, sym_string_start, + ACTIONS(1081), 1, + sym_identifier, + ACTIONS(1083), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1091), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1093), 1, + anon_sym_await, + ACTIONS(2056), 1, + anon_sym_STAR, + STATE(1033), 1, + sym_string, + STATE(1467), 1, + sym_list_splat_pattern, + STATE(1594), 1, + sym_primary_expression, + STATE(1643), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1089), 2, + anon_sym_match, + anon_sym_type, + STATE(1468), 2, + sym_attribute, + sym_subscript, + STATE(1644), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1908), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1087), 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(320), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [57630] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1914), 12, - sym__dedent, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [58965] = 20, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, sym_string_start, + ACTIONS(1686), 1, + sym_identifier, + ACTIONS(1688), 1, anon_sym_LPAREN, + ACTIONS(1690), 1, anon_sym_STAR, + ACTIONS(1696), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1698), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1577), 1, + sym_list_splat_pattern, + STATE(1626), 1, + sym_primary_expression, + STATE(1992), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(1694), 2, + anon_sym_match, + anon_sym_type, + STATE(1574), 2, + sym_attribute, + sym_subscript, + STATE(2076), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1916), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1692), 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(320), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [57683] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2052), 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(2050), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [57736] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1926), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - 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, - [57789] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1988), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [59051] = 19, + ACTIONS(307), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1990), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [57842] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1934), 12, - sym__dedent, + ACTIONS(324), 1, sym_string_start, + ACTIONS(668), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(678), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1936), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [57895] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(1870), 1, + ACTIONS(2058), 1, sym_identifier, - ACTIONS(1872), 1, - anon_sym_LPAREN, - ACTIONS(1878), 1, - anon_sym_LBRACK, - ACTIONS(1880), 1, + ACTIONS(2066), 1, anon_sym_await, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1603), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1612), 1, + STATE(1595), 1, sym_primary_expression, - STATE(2430), 1, - sym_pattern, - STATE(2686), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(1876), 2, + ACTIONS(2060), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2064), 2, anon_sym_match, anon_sym_type, - STATE(1613), 2, + STATE(1596), 2, sym_attribute, sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1874), 3, + ACTIONS(2062), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75581,60 +76481,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57984] = 21, - ACTIONS(310), 1, + [59134] = 19, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(1878), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1880), 1, + ACTIONS(1427), 1, + anon_sym_STAR, + ACTIONS(2068), 1, + sym_identifier, + ACTIONS(2074), 1, anon_sym_await, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1603), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1612), 1, + STATE(1606), 1, sym_primary_expression, - STATE(2433), 1, - sym_pattern, - STATE(2695), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(1876), 2, + ACTIONS(2060), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2072), 2, anon_sym_match, anon_sym_type, - STATE(1613), 2, + STATE(1584), 2, sym_attribute, sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1874), 3, + ACTIONS(2070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75649,162 +76545,120 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58073] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1938), 12, - sym__dedent, - sym_string_start, + [59217] = 21, + ACTIONS(2078), 1, + anon_sym_DOT, + ACTIONS(2080), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2088), 1, + anon_sym_STAR_STAR, + ACTIONS(2090), 1, + anon_sym_EQ, + ACTIONS(2092), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1940), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(2098), 1, + anon_sym_PIPE, + ACTIONS(2100), 1, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [58126] = 3, + ACTIONS(2102), 1, + anon_sym_AMP, + ACTIONS(2104), 1, + anon_sym_CARET, + ACTIONS(2106), 1, + anon_sym_is, + STATE(1553), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1942), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(2082), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_SLASH, + ACTIONS(2084), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2096), 2, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1944), 32, - anon_sym_import, + ACTIONS(2108), 2, + anon_sym_LT, + anon_sym_GT, + STATE(948), 2, + sym__not_in, + sym__is_not, + STATE(1129), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2094), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2086), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2076), 9, + sym__newline, + anon_sym_SEMI, anon_sym_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_COMMA, + anon_sym_as, 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, - [58179] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [59303] = 17, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(1878), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(1880), 1, + ACTIONS(813), 1, + anon_sym_LBRACE, + ACTIONS(817), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(1257), 1, + anon_sym_STAR, + ACTIONS(2110), 1, + anon_sym_not, + STATE(1022), 1, sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, + STATE(1115), 1, sym_primary_expression, - STATE(2450), 1, - sym_pattern, - STATE(2720), 1, - sym_pattern_list, + STATE(1307), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1876), 2, + ACTIONS(807), 2, anon_sym_match, anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1874), 3, + ACTIONS(815), 2, + sym_ellipsis, + sym_float, + ACTIONS(805), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(811), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(799), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -75817,62 +76671,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58268] = 21, - ACTIONS(310), 1, + [59381] = 17, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(1878), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1880), 1, + ACTIONS(682), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(1427), 1, + anon_sym_STAR, + ACTIONS(2110), 1, + anon_sym_not, + STATE(1033), 1, sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, + STATE(1084), 1, sym_primary_expression, - STATE(2451), 1, - sym_pattern, - STATE(2722), 1, - sym_pattern_list, + STATE(1269), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(1876), 2, + ACTIONS(676), 2, anon_sym_match, anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1874), 3, + ACTIONS(674), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -75885,62 +76732,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58357] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, + [59459] = 17, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1878), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(1880), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(727), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1249), 1, + anon_sym_STAR, + ACTIONS(2110), 1, + anon_sym_not, + STATE(982), 1, sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, + STATE(1029), 1, sym_primary_expression, - STATE(2494), 1, - sym_pattern, - STATE(2786), 1, - sym_pattern_list, + STATE(1212), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1876), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1874), 3, + ACTIONS(725), 2, + sym_ellipsis, + sym_float, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(721), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(709), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -75953,62 +76793,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58446] = 21, - ACTIONS(310), 1, + [59537] = 17, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(1878), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1880), 1, + ACTIONS(661), 1, anon_sym_await, - ACTIONS(2054), 1, - anon_sym_in, - STATE(1010), 1, + ACTIONS(1317), 1, + anon_sym_STAR, + ACTIONS(2110), 1, + anon_sym_not, + STATE(967), 1, sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, + STATE(972), 1, sym_primary_expression, - STATE(1639), 1, - sym_pattern, + STATE(1118), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1876), 2, + ACTIONS(655), 2, anon_sym_match, anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1874), 3, + ACTIONS(653), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76021,60 +76854,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58535] = 20, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1107), 1, - sym_identifier, - ACTIONS(1109), 1, + [59615] = 17, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(1117), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(1119), 1, + ACTIONS(791), 1, + anon_sym_LBRACE, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(2056), 1, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(1010), 1, + ACTIONS(2110), 1, + anon_sym_not, + STATE(1069), 1, sym_string, - STATE(1481), 1, - sym_list_splat_pattern, - STATE(1616), 1, + STATE(1231), 1, sym_primary_expression, - STATE(1639), 1, - sym_pattern, + STATE(1447), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1115), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - STATE(1482), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(793), 2, + sym_ellipsis, + sym_float, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(789), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(777), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76087,60 +76915,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58621] = 20, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1706), 1, - sym_identifier, - ACTIONS(1708), 1, + [59693] = 17, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_STAR, - ACTIONS(1716), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(1718), 1, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_STAR, + ACTIONS(2110), 1, + anon_sym_not, + STATE(981), 1, sym_string, - STATE(1578), 1, - sym_list_splat_pattern, - STATE(1620), 1, + STATE(1018), 1, sym_primary_expression, - STATE(2046), 1, - sym_pattern, + STATE(1183), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1714), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - STATE(1576), 2, - sym_attribute, - sym_subscript, - STATE(2052), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1712), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(684), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76153,60 +76976,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58707] = 20, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, + [59771] = 17, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(1878), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(1880), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(773), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1301), 1, + anon_sym_STAR, + ACTIONS(2110), 1, + anon_sym_not, + STATE(1025), 1, sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, + STATE(1099), 1, sym_primary_expression, - STATE(1639), 1, - sym_pattern, + STATE(1413), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1876), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1874), 3, + ACTIONS(771), 2, + sym_ellipsis, + sym_float, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(767), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(755), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76219,60 +77037,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58793] = 20, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1796), 1, - sym_identifier, - ACTIONS(1798), 1, + [59849] = 17, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(1802), 1, - anon_sym_STAR, - ACTIONS(1808), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(1810), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(751), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(1283), 1, + anon_sym_STAR, + ACTIONS(2110), 1, + anon_sym_not, + STATE(1003), 1, sym_string, - STATE(1590), 1, - sym_list_splat_pattern, - STATE(1615), 1, + STATE(1091), 1, sym_primary_expression, - STATE(2528), 1, - sym_pattern, + STATE(1264), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1806), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - STATE(1598), 2, - sym_attribute, - sym_subscript, - STATE(2573), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1804), 3, + ACTIONS(749), 2, + sym_ellipsis, + sym_float, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(745), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(731), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76285,58 +77098,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58879] = 20, - ACTIONS(310), 1, + [59927] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(2014), 1, - sym_identifier, - ACTIONS(2016), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, - anon_sym_STAR, - ACTIONS(2024), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(2026), 1, + ACTIONS(1427), 1, + anon_sym_STAR, + ACTIONS(2112), 1, + sym_identifier, + ACTIONS(2118), 1, anon_sym_await, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1596), 1, + STATE(1269), 1, sym_list_splat_pattern, STATE(1619), 1, sym_primary_expression, - STATE(2514), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(2022), 2, + ACTIONS(2116), 2, anon_sym_match, anon_sym_type, - STATE(1597), 2, + STATE(1420), 2, sym_attribute, sym_subscript, - STATE(2570), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2020), 3, + ACTIONS(2114), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76351,60 +77159,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58965] = 20, - ACTIONS(17), 1, - anon_sym_STAR, - ACTIONS(310), 1, + [60006] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(957), 1, - sym_identifier, - ACTIONS(961), 1, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(969), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(971), 1, + ACTIONS(661), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(1317), 1, + anon_sym_STAR, + STATE(967), 1, sym_string, - STATE(1352), 1, - sym_list_splat_pattern, - STATE(1591), 1, + STATE(977), 1, sym_primary_expression, - STATE(1610), 1, - sym_pattern, + STATE(1118), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(967), 2, + ACTIONS(655), 2, anon_sym_match, anon_sym_type, - STATE(1353), 2, - sym_attribute, - sym_subscript, - STATE(1592), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(965), 3, + ACTIONS(653), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76417,58 +77218,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59051] = 19, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [60081] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2058), 1, - sym_identifier, - ACTIONS(2066), 1, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_STAR, + STATE(981), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1612), 1, + STATE(1032), 1, sym_primary_expression, + STATE(1183), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2060), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2064), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - STATE(1607), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2062), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(684), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76481,56 +77277,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59134] = 19, - ACTIONS(310), 1, + [60156] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(2068), 1, + ACTIONS(2112), 1, sym_identifier, - ACTIONS(2074), 1, + ACTIONS(2118), 1, anon_sym_await, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1615), 1, + STATE(1625), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(2060), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2072), 2, + ACTIONS(2116), 2, anon_sym_match, anon_sym_type, - STATE(1583), 2, + STATE(1420), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2070), 3, + ACTIONS(2114), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76545,51 +77338,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59217] = 17, - ACTIONS(711), 1, + [60235] = 16, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(817), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(2076), 1, - anon_sym_not, - STATE(1028), 1, + STATE(1022), 1, sym_string, - STATE(1100), 1, + STATE(1116), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1307), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(807), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(805), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(799), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76606,8 +77397,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59295] = 17, - ACTIONS(755), 1, + [60310] = 18, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1427), 1, + anon_sym_STAR, + ACTIONS(2120), 1, + sym_identifier, + ACTIONS(2126), 1, + anon_sym_await, + STATE(1033), 1, + sym_string, + STATE(1269), 1, + sym_list_splat_pattern, + STATE(1617), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(2124), 2, + anon_sym_match, + anon_sym_type, + STATE(1317), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2122), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1339), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [60389] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, anon_sym_LBRACK, @@ -76617,26 +77469,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(775), 1, sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1301), 1, anon_sym_STAR, - ACTIONS(2076), 1, - anon_sym_not, - STATE(1015), 1, + STATE(1025), 1, sym_string, - STATE(1129), 1, + STATE(1103), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -76644,13 +77494,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76667,51 +77517,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59373] = 17, - ACTIONS(779), 1, + [60464] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_STAR, - ACTIONS(2076), 1, - anon_sym_not, - STATE(996), 1, + STATE(1025), 1, sym_string, - STATE(1082), 1, + STATE(1102), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76728,51 +77576,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59451] = 17, - ACTIONS(686), 1, + [60539] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1301), 1, anon_sym_STAR, - ACTIONS(2076), 1, - anon_sym_not, - STATE(975), 1, + STATE(1025), 1, sym_string, - STATE(1031), 1, + STATE(1099), 1, sym_primary_expression, - STATE(1214), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76789,51 +77635,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59529] = 17, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [60614] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1301), 1, anon_sym_STAR, - ACTIONS(2076), 1, - anon_sym_not, - STATE(1010), 1, + STATE(1025), 1, sym_string, - STATE(1058), 1, + STATE(1089), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(771), 2, + sym_ellipsis, + sym_float, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(767), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76850,116 +77694,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59607] = 21, - ACTIONS(2080), 1, - anon_sym_DOT, - ACTIONS(2082), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_STAR_STAR, - ACTIONS(2092), 1, - anon_sym_EQ, - ACTIONS(2094), 1, - anon_sym_LBRACK, - ACTIONS(2100), 1, - anon_sym_PIPE, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_AMP, - ACTIONS(2106), 1, - anon_sym_CARET, - ACTIONS(2108), 1, - anon_sym_is, - STATE(1555), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2084), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2086), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2098), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2110), 2, - anon_sym_LT, - anon_sym_GT, - STATE(901), 2, - sym__not_in, - sym__is_not, - STATE(1043), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2096), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2088), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2078), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [59693] = 17, - ACTIONS(733), 1, + [60689] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(751), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(1301), 1, anon_sym_STAR, - ACTIONS(2076), 1, - anon_sym_not, - STATE(971), 1, + STATE(1025), 1, sym_string, - STATE(998), 1, + STATE(1087), 1, sym_primary_expression, - STATE(1203), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76976,51 +77753,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59771] = 17, - ACTIONS(801), 1, + [60764] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1301), 1, anon_sym_STAR, - ACTIONS(2076), 1, - anon_sym_not, - STATE(1107), 1, + STATE(1025), 1, sym_string, - STATE(1225), 1, + STATE(1086), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77037,110 +77812,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59849] = 17, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(649), 1, + [60839] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1301), 1, anon_sym_STAR, - ACTIONS(2076), 1, - anon_sym_not, - STATE(969), 1, - sym_string, - STATE(977), 1, - sym_primary_expression, - STATE(1119), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(655), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(653), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1035), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [59927] = 16, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, - anon_sym_LBRACE, - ACTIONS(795), 1, - anon_sym_await, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(1267), 1, - anon_sym_STAR, - STATE(996), 1, + STATE(1025), 1, sym_string, - STATE(1082), 1, + STATE(1080), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77157,49 +77871,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60002] = 16, - ACTIONS(801), 1, + [60914] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(1025), 1, sym_string, - STATE(1229), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77216,7 +77930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60077] = 16, + [60989] = 16, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -77227,13 +77941,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(819), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(1022), 1, sym_string, - STATE(1230), 1, + STATE(1117), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1307), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -77258,7 +77972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77275,49 +77989,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60152] = 16, - ACTIONS(733), 1, + [61064] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(751), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(971), 1, + STATE(982), 1, sym_string, - STATE(1014), 1, + STATE(1034), 1, sym_primary_expression, - STATE(1203), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77334,53 +78048,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60227] = 16, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [61139] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(749), 1, - anon_sym_await, - ACTIONS(751), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(2128), 1, + sym_identifier, + ACTIONS(2134), 1, + anon_sym_await, + STATE(1033), 1, sym_string, - STATE(998), 1, - sym_primary_expression, - STATE(1203), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1621), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(2132), 2, + anon_sym_match, + anon_sym_type, + STATE(629), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(2130), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -77393,53 +78109,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60302] = 16, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [61218] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(749), 1, - anon_sym_await, - ACTIONS(751), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(2136), 1, + sym_identifier, + ACTIONS(2142), 1, + anon_sym_await, + STATE(1033), 1, sym_string, - STATE(1013), 1, - sym_primary_expression, - STATE(1203), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1594), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(2140), 2, + anon_sym_match, + anon_sym_type, + STATE(1481), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(2138), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -77452,53 +78170,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60377] = 18, - ACTIONS(310), 1, + [61297] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(2112), 1, + ACTIONS(2144), 1, sym_identifier, - ACTIONS(2118), 1, + ACTIONS(2150), 1, anon_sym_await, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1591), 1, + STATE(1611), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(2116), 2, + ACTIONS(2148), 2, anon_sym_match, anon_sym_type, - STATE(638), 2, + STATE(1106), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2114), 3, + ACTIONS(2146), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77513,49 +78231,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60456] = 16, - ACTIONS(711), 1, + [61376] = 16, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(723), 1, - anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(1033), 1, sym_string, - STATE(1102), 1, + STATE(1096), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(725), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77572,53 +78290,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60531] = 18, - ACTIONS(310), 1, + [61451] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(2120), 1, - sym_identifier, - ACTIONS(2126), 1, + ACTIONS(2118), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(2152), 1, + sym_identifier, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1617), 1, + STATE(1625), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(2124), 2, + ACTIONS(2156), 2, anon_sym_match, anon_sym_type, - STATE(1350), 2, + STATE(1283), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2122), 3, + ACTIONS(2154), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77633,53 +78351,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60610] = 16, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [61530] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(749), 1, - anon_sym_await, - ACTIONS(751), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(2158), 1, + sym_identifier, + ACTIONS(2164), 1, + anon_sym_await, + STATE(1033), 1, sym_string, - STATE(990), 1, - sym_primary_expression, - STATE(1203), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1626), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(2162), 2, + anon_sym_match, + anon_sym_type, + STATE(1243), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(2160), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -77692,53 +78412,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60685] = 16, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [61609] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(749), 1, - anon_sym_await, - ACTIONS(751), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(2118), 1, + anon_sym_await, + ACTIONS(2166), 1, + sym_identifier, + STATE(1033), 1, sym_string, - STATE(989), 1, - sym_primary_expression, - STATE(1203), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1619), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(2116), 2, + anon_sym_match, + anon_sym_type, + STATE(1420), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(2114), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -77751,53 +78473,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60760] = 16, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [61688] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(749), 1, - anon_sym_await, - ACTIONS(751), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(2120), 1, + sym_identifier, + ACTIONS(2126), 1, + anon_sym_await, + STATE(1033), 1, sym_string, - STATE(1000), 1, - sym_primary_expression, - STATE(1203), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1606), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(2124), 2, + anon_sym_match, + anon_sym_type, + STATE(1317), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(2122), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -77810,49 +78534,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60835] = 16, - ACTIONS(733), 1, + [61767] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(751), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(971), 1, + STATE(1069), 1, sym_string, - STATE(1002), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1203), 1, + STATE(1447), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77869,49 +78593,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60910] = 16, - ACTIONS(733), 1, + [61842] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(751), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(971), 1, + STATE(1069), 1, sym_string, - STATE(1003), 1, + STATE(1230), 1, sym_primary_expression, - STATE(1203), 1, + STATE(1447), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77928,53 +78652,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60985] = 18, - ACTIONS(310), 1, + [61917] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(2118), 1, + ACTIONS(2164), 1, anon_sym_await, - ACTIONS(2128), 1, + ACTIONS(2168), 1, sym_identifier, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1591), 1, + STATE(1626), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(2116), 2, + ACTIONS(2172), 2, anon_sym_match, anon_sym_type, - STATE(638), 2, + STATE(1182), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2114), 3, + ACTIONS(2170), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77989,49 +78713,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61064] = 16, - ACTIONS(779), 1, + [61996] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(996), 1, + STATE(1003), 1, sym_string, - STATE(1087), 1, + STATE(1088), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1264), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(731), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78048,49 +78772,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61139] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(649), 1, + [62071] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(969), 1, + STATE(1003), 1, sym_string, - STATE(982), 1, + STATE(1090), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1264), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(655), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(749), 2, + sym_ellipsis, + sym_float, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(745), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(731), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78107,55 +78831,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61214] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [62146] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2130), 1, - sym_identifier, - ACTIONS(2136), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(751), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(1283), 1, + anon_sym_STAR, + STATE(1003), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1615), 1, + STATE(1091), 1, sym_primary_expression, + STATE(1264), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2134), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - STATE(1585), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2132), 3, + ACTIONS(749), 2, + sym_ellipsis, + sym_float, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(745), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(731), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78168,49 +78890,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61293] = 16, - ACTIONS(755), 1, + [62221] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(1003), 1, sym_string, - STATE(1127), 1, + STATE(1092), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1264), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(731), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78227,49 +78949,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61368] = 16, - ACTIONS(755), 1, + [62296] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(1003), 1, sym_string, - STATE(1128), 1, + STATE(1093), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1264), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(731), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78286,49 +79008,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61443] = 16, - ACTIONS(755), 1, + [62371] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(1003), 1, sym_string, - STATE(1129), 1, + STATE(1094), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1264), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(731), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78345,49 +79067,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61518] = 16, - ACTIONS(755), 1, + [62446] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(1003), 1, sym_string, - STATE(1130), 1, + STATE(1098), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1264), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(731), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78404,49 +79126,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61593] = 16, - ACTIONS(755), 1, + [62521] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(1003), 1, sym_string, - STATE(1131), 1, + STATE(1124), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1264), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(731), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78463,49 +79185,113 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61668] = 16, - ACTIONS(755), 1, + [62596] = 21, + ACTIONS(2090), 1, + anon_sym_as, + ACTIONS(2100), 1, + anon_sym_not, + ACTIONS(2174), 1, + anon_sym_DOT, + ACTIONS(2176), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(2184), 1, + anon_sym_STAR_STAR, + ACTIONS(2186), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(2192), 1, + anon_sym_PIPE, + ACTIONS(2194), 1, + anon_sym_AMP, + ACTIONS(2196), 1, + anon_sym_CARET, + ACTIONS(2198), 1, + anon_sym_is, + STATE(1565), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2180), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2190), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2200), 2, + anon_sym_LT, + anon_sym_GT, + STATE(940), 2, + sym__not_in, + sym__is_not, + STATE(1233), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2188), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2182), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2076), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [62681] = 16, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(1069), 1, sym_string, - STATE(1132), 1, + STATE(1231), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1447), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78522,110 +79308,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61743] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2126), 1, - anon_sym_await, - ACTIONS(2138), 1, - sym_identifier, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1615), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2142), 2, - anon_sym_match, - anon_sym_type, - STATE(1357), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2140), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [61822] = 16, - ACTIONS(755), 1, + [62756] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(1069), 1, sym_string, - STATE(1133), 1, + STATE(1232), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1447), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78642,49 +79367,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61897] = 16, - ACTIONS(686), 1, + [62831] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(975), 1, + STATE(1069), 1, sym_string, - STATE(1017), 1, + STATE(1234), 1, sym_primary_expression, - STATE(1214), 1, + STATE(1447), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78701,49 +79426,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61972] = 16, - ACTIONS(755), 1, + [62906] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(1069), 1, sym_string, - STATE(1036), 1, + STATE(1190), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1447), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78760,49 +79485,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62047] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(649), 1, + [62981] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_STAR, - STATE(969), 1, + STATE(981), 1, sym_string, - STATE(973), 1, + STATE(1013), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1183), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(655), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(684), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78819,49 +79544,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62122] = 16, - ACTIONS(711), 1, + [63056] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(1069), 1, sym_string, - STATE(1100), 1, + STATE(1235), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1447), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78878,49 +79603,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62197] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(649), 1, + [63131] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(791), 1, + anon_sym_LBRACE, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(969), 1, + STATE(1069), 1, sym_string, - STATE(974), 1, + STATE(1236), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1447), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(655), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(793), 2, + sym_ellipsis, + sym_float, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(789), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78937,7 +79662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62272] = 16, + [63206] = 16, ACTIONS(779), 1, anon_sym_LPAREN, ACTIONS(787), 1, @@ -78948,13 +79673,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(797), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1343), 1, anon_sym_STAR, - STATE(996), 1, + STATE(1069), 1, sym_string, - STATE(1080), 1, + STATE(1237), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1447), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -78979,7 +79704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1448), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78996,7 +79721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62347] = 16, + [63281] = 16, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, @@ -79007,13 +79732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(661), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(969), 1, + STATE(967), 1, sym_string, - STATE(977), 1, + STATE(971), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1118), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -79038,7 +79763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79055,49 +79780,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62422] = 16, - ACTIONS(711), 1, + [63356] = 16, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(817), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(1022), 1, sym_string, - STATE(1103), 1, + STATE(1113), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1307), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(807), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(805), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(799), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79114,55 +79839,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62497] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [63431] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2144), 1, - sym_identifier, - ACTIONS(2150), 1, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_STAR, + STATE(981), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1618), 1, + STATE(1014), 1, sym_primary_expression, + STATE(1183), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2148), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - STATE(1445), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2146), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(684), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79175,49 +79898,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62576] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(649), 1, + [63506] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_STAR, - STATE(969), 1, + STATE(981), 1, sym_string, - STATE(980), 1, + STATE(1015), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1183), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(655), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(684), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79234,49 +79957,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62651] = 16, - ACTIONS(711), 1, + [63581] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1003), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(981), 1, sym_string, - STATE(1095), 1, + STATE(1016), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1183), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(684), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79293,49 +80016,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62726] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(649), 1, + [63656] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_STAR, - STATE(969), 1, + STATE(981), 1, sym_string, - STATE(987), 1, + STATE(1017), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1183), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(655), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(684), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79352,49 +80075,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62801] = 16, - ACTIONS(711), 1, + [63731] = 16, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(817), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(1022), 1, sym_string, - STATE(1101), 1, + STATE(1114), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1307), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(807), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(805), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(799), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79411,53 +80134,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62876] = 18, - ACTIONS(310), 1, + [63806] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(2152), 1, - sym_identifier, - ACTIONS(2158), 1, + ACTIONS(2126), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(2202), 1, + sym_identifier, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1614), 1, + STATE(1606), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(2156), 2, + ACTIONS(2206), 2, anon_sym_match, anon_sym_type, - STATE(1071), 2, + STATE(1301), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2154), 3, + ACTIONS(2204), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79472,113 +80195,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62955] = 21, - ACTIONS(2092), 1, - anon_sym_EQ, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2162), 1, + [63885] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, - anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(2178), 1, - anon_sym_PIPE, - ACTIONS(2180), 1, - anon_sym_AMP, - ACTIONS(2182), 1, - anon_sym_CARET, - ACTIONS(2184), 1, - anon_sym_is, - STATE(1567), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2164), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2186), 2, - anon_sym_LT, - anon_sym_GT, - STATE(940), 2, - sym__not_in, - sym__is_not, - STATE(1181), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2174), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2168), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2078), 8, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [63040] = 16, - ACTIONS(310), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_STAR, - STATE(1010), 1, + STATE(981), 1, sym_string, - STATE(1050), 1, + STATE(1018), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1183), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(684), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79595,49 +80254,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63115] = 16, - ACTIONS(779), 1, + [63960] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1003), 1, anon_sym_STAR, - STATE(996), 1, + STATE(981), 1, sym_string, - STATE(1081), 1, + STATE(1019), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1183), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(684), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79654,174 +80313,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63190] = 21, - ACTIONS(2092), 1, - anon_sym_as, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2190), 1, + [64035] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(2206), 1, - anon_sym_PIPE, - ACTIONS(2208), 1, - anon_sym_AMP, - ACTIONS(2210), 1, - anon_sym_CARET, - ACTIONS(2212), 1, - anon_sym_is, - STATE(1565), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2192), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2194), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2204), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2214), 2, - anon_sym_LT, - anon_sym_GT, - STATE(873), 2, - sym__not_in, - sym__is_not, - STATE(1152), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2202), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2196), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2078), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [63275] = 18, - ACTIONS(310), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(702), 1, + anon_sym_await, + ACTIONS(704), 1, sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1003), 1, anon_sym_STAR, - ACTIONS(2216), 1, - sym_identifier, - ACTIONS(2222), 1, - anon_sym_await, - STATE(1010), 1, + STATE(981), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1612), 1, + STATE(1020), 1, sym_primary_expression, + STATE(1183), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2220), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - STATE(1611), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2218), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [63354] = 16, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(1433), 1, - anon_sym_STAR, - STATE(1010), 1, - sym_string, - STATE(1063), 1, - sym_primary_expression, - STATE(1342), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(315), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(684), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1208), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79838,55 +80372,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63429] = 18, - ACTIONS(310), 1, + [64110] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2150), 1, + ACTIONS(661), 1, anon_sym_await, - ACTIONS(2224), 1, - sym_identifier, - STATE(1010), 1, + ACTIONS(1317), 1, + anon_sym_STAR, + STATE(967), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1619), 1, + STATE(978), 1, sym_primary_expression, + STATE(1118), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2228), 2, + ACTIONS(655), 2, anon_sym_match, anon_sym_type, - STATE(1359), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2226), 3, + ACTIONS(653), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79899,53 +80431,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63508] = 18, - ACTIONS(310), 1, + [64185] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(2150), 1, + ACTIONS(2126), 1, anon_sym_await, - ACTIONS(2230), 1, + ACTIONS(2208), 1, sym_identifier, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1618), 1, + STATE(1617), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(2148), 2, + ACTIONS(2124), 2, anon_sym_match, anon_sym_type, - STATE(1445), 2, + STATE(1317), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2146), 3, + ACTIONS(2122), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79960,7 +80492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63587] = 16, + [64264] = 16, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -79971,13 +80503,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(819), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(1022), 1, sym_string, - STATE(1217), 1, + STATE(1112), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1307), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -80002,7 +80534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80019,49 +80551,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63662] = 16, - ACTIONS(711), 1, + [64339] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(1025), 1, sym_string, - STATE(1104), 1, + STATE(1126), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1380), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80078,49 +80610,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63737] = 16, - ACTIONS(711), 1, + [64414] = 16, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(723), 1, - anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(1033), 1, sym_string, - STATE(1098), 1, + STATE(1044), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(725), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80137,55 +80669,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63812] = 18, - ACTIONS(310), 1, + [64489] = 16, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2232), 1, - sym_identifier, - ACTIONS(2238), 1, + ACTIONS(682), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(1427), 1, + anon_sym_STAR, + STATE(1033), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1612), 1, + STATE(1043), 1, sym_primary_expression, + STATE(1269), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(2236), 2, + ACTIONS(676), 2, anon_sym_match, anon_sym_type, - STATE(1271), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2234), 3, + ACTIONS(674), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80198,49 +80728,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63891] = 16, - ACTIONS(310), 1, + [64564] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(661), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(1010), 1, + STATE(967), 1, sym_string, - STATE(1056), 1, + STATE(984), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1118), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(655), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(653), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80257,108 +80787,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63966] = 16, - ACTIONS(711), 1, + [64639] = 16, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(817), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(1022), 1, sym_string, - STATE(1105), 1, + STATE(1109), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1307), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(807), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(805), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(709), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1270), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - 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, - [64041] = 16, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(1433), 1, - anon_sym_STAR, - STATE(1010), 1, - sym_string, - STATE(1057), 1, - sym_primary_expression, - STATE(1342), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(315), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(799), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80375,49 +80846,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64116] = 16, - ACTIONS(779), 1, + [64714] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(996), 1, + STATE(982), 1, sym_string, - STATE(1083), 1, + STATE(1001), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80434,7 +80905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64191] = 16, + [64789] = 16, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, @@ -80445,13 +80916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(661), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(969), 1, + STATE(967), 1, sym_string, - STATE(986), 1, + STATE(974), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1118), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -80476,7 +80947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80493,55 +80964,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64266] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [64864] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2240), 1, - sym_identifier, - ACTIONS(2246), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(727), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1249), 1, + anon_sym_STAR, + STATE(982), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1620), 1, + STATE(1000), 1, sym_primary_expression, + STATE(1212), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2244), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - STATE(1233), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2242), 3, + ACTIONS(725), 2, + sym_ellipsis, + sym_float, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(721), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(709), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80554,49 +81023,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64345] = 16, - ACTIONS(779), 1, + [64939] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(996), 1, + STATE(982), 1, sym_string, - STATE(1084), 1, + STATE(998), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80613,49 +81082,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64420] = 16, - ACTIONS(310), 1, + [65014] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(661), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(1010), 1, + STATE(967), 1, sym_string, - STATE(1058), 1, + STATE(975), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1118), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(655), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(653), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80672,55 +81141,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64495] = 18, - ACTIONS(310), 1, + [65089] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2248), 1, - sym_identifier, - ACTIONS(2254), 1, + ACTIONS(661), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(1317), 1, + anon_sym_STAR, + STATE(967), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1616), 1, + STATE(976), 1, sym_primary_expression, + STATE(1118), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2252), 2, + ACTIONS(655), 2, anon_sym_match, anon_sym_type, - STATE(1476), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2250), 3, + ACTIONS(653), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80733,49 +81200,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64574] = 16, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [65164] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(1010), 1, + STATE(982), 1, sym_string, - STATE(1059), 1, + STATE(997), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(725), 2, + sym_ellipsis, + sym_float, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(721), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80792,49 +81259,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64649] = 16, - ACTIONS(801), 1, + [65239] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(982), 1, sym_string, - STATE(1223), 1, + STATE(996), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80851,49 +81318,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64724] = 16, - ACTIONS(801), 1, + [65314] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(982), 1, sym_string, - STATE(1224), 1, + STATE(1029), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80910,49 +81377,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64799] = 16, - ACTIONS(779), 1, + [65389] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(996), 1, + STATE(982), 1, sym_string, - STATE(1085), 1, + STATE(990), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80969,49 +81436,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64874] = 16, - ACTIONS(755), 1, + [65464] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(661), 1, anon_sym_await, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(967), 1, sym_string, - STATE(1121), 1, + STATE(985), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1118), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(655), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(653), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81028,10 +81495,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64949] = 16, - ACTIONS(310), 1, + [65539] = 16, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, @@ -81039,24 +81506,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(682), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1060), 1, + STATE(1075), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(676), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -81064,13 +81531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81087,49 +81554,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65024] = 16, - ACTIONS(67), 1, + [65614] = 16, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(969), 1, + STATE(1033), 1, sym_string, - STATE(983), 1, + STATE(1072), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(655), 2, + ACTIONS(676), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(674), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81146,10 +81613,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65099] = 16, - ACTIONS(310), 1, + [65689] = 16, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, @@ -81157,24 +81624,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(682), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(1010), 1, + STATE(1033), 1, sym_string, - STATE(1061), 1, + STATE(1039), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(676), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -81182,13 +81649,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81205,53 +81672,119 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65174] = 16, - ACTIONS(686), 1, + [65764] = 21, + ACTIONS(2090), 1, + anon_sym_EQ, + ACTIONS(2100), 1, + anon_sym_not, + ACTIONS(2210), 1, + anon_sym_DOT, + ACTIONS(2212), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(2228), 1, + anon_sym_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2234), 1, + anon_sym_is, + STATE(1568), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2216), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2226), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2236), 2, + anon_sym_LT, + anon_sym_GT, + STATE(921), 2, + sym__not_in, + sym__is_not, + STATE(1172), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2224), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2218), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2076), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [65849] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(702), 1, - anon_sym_await, - ACTIONS(704), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(975), 1, + ACTIONS(2238), 1, + sym_identifier, + ACTIONS(2244), 1, + anon_sym_await, + STATE(1033), 1, sym_string, - STATE(1021), 1, - sym_primary_expression, - STATE(1214), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1595), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(2242), 2, + anon_sym_match, + anon_sym_type, + STATE(1304), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(2240), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81264,49 +81797,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65249] = 16, - ACTIONS(686), 1, + [65928] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(698), 1, - anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(661), 1, anon_sym_await, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(975), 1, + STATE(967), 1, sym_string, - STATE(1025), 1, + STATE(972), 1, sym_primary_expression, - STATE(1214), 1, + STATE(1118), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(655), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(653), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1130), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81323,53 +81856,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65324] = 16, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [66003] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(702), 1, - anon_sym_await, - ACTIONS(704), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(975), 1, + ACTIONS(2244), 1, + anon_sym_await, + ACTIONS(2246), 1, + sym_identifier, + STATE(1033), 1, sym_string, - STATE(1031), 1, - sym_primary_expression, - STATE(1214), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1595), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(2242), 2, + anon_sym_match, + anon_sym_type, + STATE(1304), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(2240), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81382,49 +81917,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65399] = 16, - ACTIONS(801), 1, + [66082] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(1003), 1, sym_string, - STATE(1225), 1, + STATE(1095), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1264), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(731), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81441,53 +81976,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65474] = 16, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [66157] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(702), 1, - anon_sym_await, - ACTIONS(704), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(975), 1, + ACTIONS(2150), 1, + anon_sym_await, + ACTIONS(2248), 1, + sym_identifier, + STATE(1033), 1, sym_string, - STATE(1007), 1, - sym_primary_expression, - STATE(1214), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1611), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(2148), 2, + anon_sym_match, + anon_sym_type, + STATE(1106), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(2146), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81500,53 +82037,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65549] = 18, - ACTIONS(310), 1, + [66236] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(2238), 1, - anon_sym_await, - ACTIONS(2256), 1, + ACTIONS(2250), 1, sym_identifier, - STATE(1010), 1, + ACTIONS(2256), 1, + anon_sym_await, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1612), 1, + STATE(1606), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(2236), 2, + ACTIONS(2254), 2, anon_sym_match, anon_sym_type, - STATE(1271), 2, + STATE(1585), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2234), 3, + ACTIONS(2252), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -81561,53 +82098,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65628] = 16, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [66315] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(702), 1, - anon_sym_await, - ACTIONS(704), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(975), 1, + ACTIONS(2164), 1, + anon_sym_await, + ACTIONS(2168), 1, + sym_identifier, + STATE(1033), 1, sym_string, - STATE(994), 1, - sym_primary_expression, - STATE(1214), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1604), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(2172), 2, + anon_sym_match, + anon_sym_type, + STATE(1182), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(2170), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81620,40 +82159,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65703] = 18, - ACTIONS(310), 1, + [66394] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(2246), 1, - anon_sym_await, ACTIONS(2258), 1, sym_identifier, - STATE(1010), 1, + ACTIONS(2264), 1, + anon_sym_await, + STATE(1033), 1, sym_string, - STATE(1342), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1589), 1, + STATE(1595), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, ACTIONS(2262), 2, anon_sym_match, anon_sym_type, - STATE(1213), 2, + STATE(1599), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -81661,12 +82200,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -81681,49 +82220,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65782] = 16, - ACTIONS(686), 1, + [66473] = 16, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(698), 1, - anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(975), 1, + STATE(1033), 1, sym_string, - STATE(1024), 1, + STATE(1084), 1, sym_primary_expression, - STATE(1214), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81740,49 +82279,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65857] = 16, - ACTIONS(686), 1, + [66548] = 16, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(698), 1, - anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(975), 1, + STATE(1033), 1, sym_string, - STATE(1011), 1, + STATE(1037), 1, sym_primary_expression, - STATE(1214), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81799,49 +82338,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65932] = 16, - ACTIONS(779), 1, + [66623] = 16, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(996), 1, + STATE(1022), 1, sym_string, - STATE(1075), 1, + STATE(1111), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1307), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(807), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(805), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(799), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81858,53 +82397,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66007] = 16, - ACTIONS(67), 1, + [66698] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(969), 1, + ACTIONS(2134), 1, + anon_sym_await, + ACTIONS(2266), 1, + sym_identifier, + STATE(1033), 1, sym_string, - STATE(985), 1, - sym_primary_expression, - STATE(1119), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1621), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(655), 2, + ACTIONS(2132), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(629), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(2130), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1339), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81917,49 +82458,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66082] = 16, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [66777] = 16, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(702), 1, - anon_sym_await, - ACTIONS(704), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(1427), 1, anon_sym_STAR, - STATE(975), 1, + STATE(1033), 1, sym_string, - STATE(1012), 1, + STATE(1038), 1, sym_primary_expression, - STATE(1214), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(312), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1339), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81976,49 +82517,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66157] = 16, - ACTIONS(801), 1, + [66852] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1249), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(982), 1, sym_string, - STATE(1226), 1, + STATE(993), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1171), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82035,7 +82576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66232] = 16, + [66927] = 16, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -82046,13 +82587,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(819), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(1022), 1, sym_string, - STATE(1227), 1, + STATE(1115), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1307), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -82077,66 +82618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1442), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [66307] = 16, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, - anon_sym_LBRACE, - ACTIONS(795), 1, - anon_sym_await, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(1267), 1, - anon_sym_STAR, - STATE(996), 1, - sym_string, - STATE(1086), 1, - sym_primary_expression, - STATE(1360), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(785), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(793), 2, - sym_ellipsis, - sym_float, - ACTIONS(783), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(789), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(777), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1365), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82153,68 +82635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66382] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2126), 1, - anon_sym_await, - ACTIONS(2264), 1, - sym_identifier, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1617), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2124), 2, - anon_sym_match, - anon_sym_type, - STATE(1350), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2122), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [66461] = 16, + [67002] = 16, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -82225,13 +82646,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(819), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(1022), 1, sym_string, - STATE(1228), 1, + STATE(1108), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1307), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -82256,367 +82677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1442), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [66536] = 16, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(1433), 1, - anon_sym_STAR, - STATE(1010), 1, - sym_string, - STATE(1062), 1, - sym_primary_expression, - STATE(1342), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1268), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [66611] = 16, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, - anon_sym_LBRACE, - ACTIONS(727), 1, - anon_sym_await, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(1028), 1, - sym_string, - STATE(1099), 1, - sym_primary_expression, - STATE(1388), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(717), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(715), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(709), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1270), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - 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, - [66686] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2246), 1, - anon_sym_await, - ACTIONS(2258), 1, - sym_identifier, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2262), 2, - anon_sym_match, - anon_sym_type, - STATE(1213), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2260), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [66765] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2120), 1, - sym_identifier, - ACTIONS(2126), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1615), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2124), 2, - anon_sym_match, - anon_sym_type, - STATE(1350), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2122), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [66844] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2144), 1, - sym_identifier, - ACTIONS(2150), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1619), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2148), 2, - anon_sym_match, - anon_sym_type, - STATE(1445), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2146), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [66923] = 16, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, - anon_sym_LBRACE, - ACTIONS(749), 1, - anon_sym_await, - ACTIONS(751), 1, - sym_string_start, - ACTIONS(1287), 1, - anon_sym_STAR, - STATE(971), 1, - sym_string, - STATE(999), 1, - sym_primary_expression, - STATE(1203), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(739), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 2, - sym_ellipsis, - sym_float, - ACTIONS(737), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(731), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1138), 16, + STATE(1404), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82633,909 +82694,227 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66998] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2158), 1, - anon_sym_await, - ACTIONS(2266), 1, - sym_identifier, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1614), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2156), 2, - anon_sym_match, - anon_sym_type, - STATE(1071), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2154), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, [67077] = 21, - ACTIONS(2092), 1, - anon_sym_as, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2268), 1, - anon_sym_DOT, - ACTIONS(2270), 1, - anon_sym_LPAREN, - ACTIONS(2278), 1, - anon_sym_STAR_STAR, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2286), 1, - anon_sym_PIPE, - ACTIONS(2288), 1, - anon_sym_AMP, - ACTIONS(2290), 1, - anon_sym_CARET, - ACTIONS(2292), 1, - anon_sym_is, - STATE(1571), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2272), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2274), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2284), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2294), 2, - anon_sym_LT, - anon_sym_GT, - STATE(889), 2, - sym__not_in, - sym__is_not, - STATE(1389), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2282), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2276), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2078), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [67161] = 5, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(968), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2296), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [67213] = 21, - ACTIONS(2092), 1, - anon_sym_as, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2300), 1, - anon_sym_DOT, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_STAR_STAR, - ACTIONS(2312), 1, - anon_sym_LBRACK, - ACTIONS(2318), 1, - anon_sym_PIPE, - ACTIONS(2320), 1, - anon_sym_AMP, - ACTIONS(2322), 1, - anon_sym_CARET, - ACTIONS(2324), 1, - anon_sym_is, - STATE(1572), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2306), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2316), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2326), 2, - anon_sym_LT, - anon_sym_GT, - STATE(869), 2, - sym__not_in, - sym__is_not, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2314), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2308), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2078), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [67297] = 20, - ACTIONS(2082), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_STAR_STAR, - ACTIONS(2100), 1, - anon_sym_PIPE, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_AMP, - ACTIONS(2106), 1, - anon_sym_CARET, - ACTIONS(2108), 1, - anon_sym_is, - ACTIONS(2328), 1, - anon_sym_DOT, - ACTIONS(2330), 1, - anon_sym_LBRACK, - STATE(1555), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2084), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2086), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2098), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2110), 2, - anon_sym_LT, - anon_sym_GT, - STATE(901), 2, - sym__not_in, - sym__is_not, - STATE(1043), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2096), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2088), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2078), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [67379] = 21, - ACTIONS(2092), 1, - anon_sym_EQ, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2332), 1, - anon_sym_DOT, - ACTIONS(2334), 1, - anon_sym_LPAREN, - ACTIONS(2342), 1, - anon_sym_STAR_STAR, - ACTIONS(2344), 1, - anon_sym_LBRACK, - ACTIONS(2350), 1, - anon_sym_PIPE, - ACTIONS(2352), 1, - anon_sym_AMP, - ACTIONS(2354), 1, - anon_sym_CARET, - ACTIONS(2356), 1, - anon_sym_is, - STATE(1559), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2338), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2348), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2358), 2, - anon_sym_LT, - anon_sym_GT, - STATE(898), 2, - sym__not_in, - sym__is_not, - STATE(1282), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2346), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2340), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2078), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [67463] = 5, - ACTIONS(2364), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(968), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2360), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [67515] = 5, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(964), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1547), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [67567] = 21, - ACTIONS(2092), 1, - anon_sym_EQ, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2367), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_AMP, - ACTIONS(2389), 1, - anon_sym_CARET, - ACTIONS(2391), 1, - anon_sym_is, - STATE(1561), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2373), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2393), 2, - anon_sym_LT, - anon_sym_GT, - STATE(928), 2, - sym__not_in, - sym__is_not, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2375), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2078), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_or, - [67651] = 5, - ACTIONS(751), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(978), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1547), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [67702] = 5, - ACTIONS(2395), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(972), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2360), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [67753] = 8, - ACTIONS(2080), 1, - anon_sym_DOT, - ACTIONS(2082), 1, - anon_sym_LPAREN, ACTIONS(2090), 1, - anon_sym_STAR_STAR, - ACTIONS(2094), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1043), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, - anon_sym_STAR, anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2398), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [67810] = 11, - ACTIONS(2080), 1, + ACTIONS(2100), 1, + anon_sym_not, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2082), 1, + ACTIONS(2270), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2278), 1, anon_sym_STAR_STAR, - ACTIONS(2094), 1, + ACTIONS(2280), 1, anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_PIPE, + ACTIONS(2288), 1, + anon_sym_AMP, + ACTIONS(2290), 1, + anon_sym_CARET, + ACTIONS(2292), 1, + anon_sym_is, + STATE(1559), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2084), 2, + ACTIONS(2272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2098), 2, + ACTIONS(2274), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2284), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1043), 2, + ACTIONS(2294), 2, + anon_sym_LT, + anon_sym_GT, + STATE(877), 2, + sym__not_in, + sym__is_not, + STATE(1407), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2096), 3, + ACTIONS(2282), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2398), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, + ACTIONS(2276), 6, anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67873] = 5, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(984), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1547), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2076), 7, + 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, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [67924] = 20, - ACTIONS(2102), 1, + [67161] = 21, + ACTIONS(2090), 1, + anon_sym_as, + ACTIONS(2100), 1, anon_sym_not, - ACTIONS(2402), 1, + ACTIONS(2296), 1, anon_sym_DOT, - ACTIONS(2404), 1, + ACTIONS(2298), 1, anon_sym_LPAREN, - ACTIONS(2412), 1, + ACTIONS(2306), 1, anon_sym_STAR_STAR, - ACTIONS(2414), 1, + ACTIONS(2308), 1, anon_sym_LBRACK, - ACTIONS(2420), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2422), 1, + ACTIONS(2316), 1, anon_sym_AMP, - ACTIONS(2424), 1, + ACTIONS(2318), 1, anon_sym_CARET, - ACTIONS(2426), 1, + ACTIONS(2320), 1, anon_sym_is, - STATE(1566), 1, + STATE(1579), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2406), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 2, + ACTIONS(2302), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2418), 2, + ACTIONS(2312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2428), 2, + ACTIONS(2322), 2, anon_sym_LT, anon_sym_GT, - STATE(941), 2, + STATE(961), 2, sym__not_in, sym__is_not, - STATE(1447), 2, + STATE(1379), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2416), 3, + ACTIONS(2310), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2410), 6, + ACTIONS(2304), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2078), 7, + ACTIONS(2076), 7, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [68005] = 15, - ACTIONS(2080), 1, + [67245] = 21, + ACTIONS(2090), 1, + anon_sym_as, + ACTIONS(2100), 1, + anon_sym_not, + ACTIONS(2324), 1, anon_sym_DOT, - ACTIONS(2082), 1, + ACTIONS(2326), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2334), 1, anon_sym_STAR_STAR, - ACTIONS(2094), 1, + ACTIONS(2336), 1, anon_sym_LBRACK, - ACTIONS(2100), 1, + ACTIONS(2342), 1, anon_sym_PIPE, - ACTIONS(2104), 1, + ACTIONS(2344), 1, anon_sym_AMP, - ACTIONS(2106), 1, + ACTIONS(2346), 1, anon_sym_CARET, + ACTIONS(2348), 1, + anon_sym_is, + STATE(1580), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2084), 2, + ACTIONS(2328), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2086), 2, + ACTIONS(2330), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2098), 2, + ACTIONS(2340), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1043), 2, + ACTIONS(2350), 2, + anon_sym_LT, + anon_sym_GT, + STATE(898), 2, + sym__not_in, + sym__is_not, + STATE(1355), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2096), 3, + ACTIONS(2338), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2432), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2430), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(2332), 6, 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, - [68076] = 5, - ACTIONS(751), 1, + ACTIONS(2076), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [67329] = 5, + ACTIONS(81), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(979), 2, + STATE(969), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 5, - anon_sym_as, + ACTIONS(2354), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 30, + ACTIONS(2352), 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, @@ -83551,37 +82930,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68127] = 5, - ACTIONS(2434), 1, + [67381] = 5, + ACTIONS(81), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(979), 2, + STATE(966), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 5, - anon_sym_as, + ACTIONS(1552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2360), 30, + ACTIONS(1547), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_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, @@ -83597,86 +82977,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68178] = 8, - ACTIONS(2080), 1, + [67433] = 21, + ACTIONS(2090), 1, + anon_sym_EQ, + ACTIONS(2100), 1, + anon_sym_not, + ACTIONS(2356), 1, anon_sym_DOT, - ACTIONS(2082), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2094), 1, + ACTIONS(2368), 1, anon_sym_LBRACK, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_AMP, + ACTIONS(2378), 1, + anon_sym_CARET, + ACTIONS(2380), 1, + anon_sym_is, + STATE(1561), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1043), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, + ACTIONS(2360), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2398), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2362), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2372), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2382), 2, + anon_sym_LT, + anon_sym_GT, + STATE(955), 2, + sym__not_in, + sym__is_not, + STATE(1265), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + ACTIONS(2364), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68235] = 8, - ACTIONS(2080), 1, - anon_sym_DOT, - ACTIONS(2082), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_STAR_STAR, - ACTIONS(2094), 1, - anon_sym_LBRACK, + ACTIONS(2076), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [67517] = 5, + ACTIONS(2388), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1043), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2439), 5, + STATE(969), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2386), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2437), 27, + ACTIONS(2384), 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, @@ -83695,133 +83087,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68292] = 14, + [67569] = 20, ACTIONS(2080), 1, - anon_sym_DOT, - ACTIONS(2082), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2088), 1, anon_sym_STAR_STAR, - ACTIONS(2094), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(2098), 1, + anon_sym_PIPE, + ACTIONS(2100), 1, + anon_sym_not, + ACTIONS(2102), 1, anon_sym_AMP, - ACTIONS(2106), 1, + ACTIONS(2104), 1, anon_sym_CARET, + ACTIONS(2106), 1, + anon_sym_is, + ACTIONS(2391), 1, + anon_sym_DOT, + ACTIONS(2393), 1, + anon_sym_LBRACK, + STATE(1553), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2084), 2, + ACTIONS(2082), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2086), 2, + ACTIONS(2084), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2098), 2, + ACTIONS(2096), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1043), 2, + ACTIONS(2108), 2, + anon_sym_LT, + anon_sym_GT, + STATE(948), 2, + sym__not_in, + sym__is_not, + STATE(1129), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2096), 3, + ACTIONS(2094), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2086), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2076), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [67651] = 8, + ACTIONS(2078), 1, + anon_sym_DOT, + ACTIONS(2080), 1, + anon_sym_LPAREN, + ACTIONS(2088), 1, + anon_sym_STAR_STAR, + ACTIONS(2092), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1129), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2397), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 18, + ACTIONS(2395), 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, - [68361] = 8, - ACTIONS(2080), 1, + [67708] = 15, + ACTIONS(2078), 1, anon_sym_DOT, - ACTIONS(2082), 1, + ACTIONS(2080), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2088), 1, anon_sym_STAR_STAR, - ACTIONS(2094), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, + ACTIONS(2098), 1, + anon_sym_PIPE, + ACTIONS(2102), 1, + anon_sym_AMP, + ACTIONS(2104), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1043), 2, + ACTIONS(2082), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2084), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2096), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1129), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2443), 5, - anon_sym_STAR, + ACTIONS(2094), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2401), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 27, + ACTIONS(2399), 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_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, - [68418] = 5, - ACTIONS(704), 1, + [67779] = 5, + ACTIONS(729), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(972), 2, + STATE(980), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 5, + ACTIONS(2354), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 30, + ACTIONS(2352), 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, @@ -83844,34 +83300,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68469] = 10, - ACTIONS(2080), 1, + [67830] = 10, + ACTIONS(2078), 1, anon_sym_DOT, - ACTIONS(2082), 1, + ACTIONS(2080), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2088), 1, anon_sym_STAR_STAR, - ACTIONS(2094), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2084), 2, + ACTIONS(2082), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1043), 2, + STATE(1129), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2096), 3, + ACTIONS(2094), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2405), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 24, + ACTIONS(2403), 24, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83896,39 +83351,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68530] = 12, - ACTIONS(2080), 1, + [67891] = 14, + ACTIONS(2078), 1, anon_sym_DOT, - ACTIONS(2082), 1, + ACTIONS(2080), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2088), 1, anon_sym_STAR_STAR, - ACTIONS(2094), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, + ACTIONS(2102), 1, + anon_sym_AMP, + ACTIONS(2104), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2084), 2, + ACTIONS(2082), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2086), 2, + ACTIONS(2084), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2098), 2, + ACTIONS(2096), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1043), 2, + STATE(1129), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2096), 3, + ACTIONS(2094), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2405), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 20, + ACTIONS(2403), 18, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83941,49 +83400,47 @@ 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, - [68595] = 13, - ACTIONS(2080), 1, + [67960] = 13, + ACTIONS(2078), 1, anon_sym_DOT, - ACTIONS(2082), 1, + ACTIONS(2080), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2088), 1, anon_sym_STAR_STAR, - ACTIONS(2094), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2106), 1, + ACTIONS(2104), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2084), 2, + ACTIONS(2082), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2086), 2, + ACTIONS(2084), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2098), 2, + ACTIONS(2096), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1043), 2, + STATE(1129), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2096), 3, + ACTIONS(2094), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2405), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 19, + ACTIONS(2403), 19, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -84003,45 +83460,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68662] = 8, - ACTIONS(2188), 1, + [68027] = 11, + ACTIONS(2078), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2080), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2088), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2439), 5, - anon_sym_as, + ACTIONS(2082), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2096), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1129), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2094), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2437), 26, + ACTIONS(2403), 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_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, @@ -84051,39 +83512,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68718] = 8, - ACTIONS(2188), 1, + [68090] = 8, + ACTIONS(2078), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2080), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2088), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, + STATE(1129), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2443), 5, - anon_sym_as, + ACTIONS(2405), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 26, + ACTIONS(2403), 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_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84099,189 +83561,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68774] = 10, - ACTIONS(2188), 1, + [68147] = 20, + ACTIONS(2100), 1, + anon_sym_not, + ACTIONS(2407), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2409), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2417), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2192), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1152), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2202), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2398), 23, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - 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, - [68834] = 20, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2162), 1, - anon_sym_LPAREN, - ACTIONS(2170), 1, - anon_sym_STAR_STAR, - ACTIONS(2178), 1, + ACTIONS(2425), 1, anon_sym_PIPE, - ACTIONS(2180), 1, + ACTIONS(2427), 1, anon_sym_AMP, - ACTIONS(2182), 1, + ACTIONS(2429), 1, anon_sym_CARET, - ACTIONS(2184), 1, + ACTIONS(2431), 1, anon_sym_is, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2200), 1, - anon_sym_LBRACK, - STATE(1567), 1, + STATE(1566), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + ACTIONS(2411), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2166), 2, + ACTIONS(2413), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2176), 2, + ACTIONS(2423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 2, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - STATE(940), 2, + STATE(905), 2, sym__not_in, sym__is_not, - STATE(1181), 2, + STATE(1438), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2174), 3, + ACTIONS(2421), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2078), 6, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - ACTIONS(2168), 6, + ACTIONS(2415), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68914] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1664), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1662), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2076), 7, 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_RBRACK, 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, - [68960] = 5, - ACTIONS(327), 1, + [68228] = 5, + ACTIONS(2435), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1006), 2, + STATE(980), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 5, + ACTIONS(2386), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 29, + ACTIONS(2384), 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_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, @@ -84297,39 +83668,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69010] = 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, + [68279] = 5, + ACTIONS(704), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1181), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2174), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + STATE(983), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1552), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 23, + ACTIONS(1547), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, @@ -84337,6 +83702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -84347,36 +83714,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [69070] = 5, + [68330] = 5, ACTIONS(729), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1029), 2, + STATE(973), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 5, + ACTIONS(1552), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 29, + ACTIONS(1547), 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, @@ -84392,36 +83760,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69120] = 5, - ACTIONS(797), 1, + [68381] = 5, + ACTIONS(704), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1001), 2, + STATE(986), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, - anon_sym_as, + ACTIONS(2354), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2352), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84437,31 +83805,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69170] = 3, + sym_type_conversion, + [68432] = 8, + ACTIONS(2078), 1, + anon_sym_DOT, + ACTIONS(2080), 1, + anon_sym_LPAREN, + ACTIONS(2088), 1, + anon_sym_STAR_STAR, + ACTIONS(2092), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + STATE(1129), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2405), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 32, + ACTIONS(2403), 27, 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, @@ -84480,90 +83855,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69216] = 15, - ACTIONS(2188), 1, + [68489] = 12, + ACTIONS(2078), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2080), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2088), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2206), 1, - anon_sym_PIPE, - ACTIONS(2208), 1, - anon_sym_AMP, - ACTIONS(2210), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, + ACTIONS(2082), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2194), 2, + ACTIONS(2084), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2204), 2, + ACTIONS(2096), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1152), 2, + STATE(1129), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2202), 3, + ACTIONS(2094), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2432), 3, - anon_sym_as, + ACTIONS(2405), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2430), 16, + ACTIONS(2403), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACE, + 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, - [69286] = 8, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_STAR_STAR, - ACTIONS(2200), 1, - anon_sym_LBRACK, + [68554] = 5, + ACTIONS(2438), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, - anon_sym_as, + STATE(986), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2386), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 26, + ACTIONS(2384), 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, @@ -84583,87 +83953,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69342] = 14, - ACTIONS(2188), 1, + sym_type_conversion, + [68605] = 8, + ACTIONS(2078), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2080), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2088), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2208), 1, - anon_sym_AMP, - ACTIONS(2210), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2194), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2204), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1152), 2, + STATE(1129), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2202), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_as, + ACTIONS(2443), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 17, + ACTIONS(2441), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_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, - [69410] = 5, - ACTIONS(797), 1, + [68662] = 5, + ACTIONS(775), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1004), 2, + STATE(1024), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 5, - anon_sym_as, + ACTIONS(2354), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 29, + ACTIONS(2352), 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, @@ -84682,42 +84048,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69460] = 13, - ACTIONS(2188), 1, + [68712] = 8, + ACTIONS(2210), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2212), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2222), 1, anon_sym_LBRACK, - ACTIONS(2210), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, + STATE(1172), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2443), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2194), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2441), 26, + 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_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(2204), 2, + 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, + [68768] = 11, + ACTIONS(2174), 1, + anon_sym_DOT, + ACTIONS(2176), 1, + anon_sym_LPAREN, + ACTIONS(2184), 1, + anon_sym_STAR_STAR, + ACTIONS(2186), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2190), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1152), 2, + STATE(1233), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2202), 3, + ACTIONS(2188), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2405), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 18, + ACTIONS(2403), 21, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, @@ -84729,94 +84139,150 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69526] = 12, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2190), 1, + [68830] = 20, + ACTIONS(2100), 1, + anon_sym_not, + ACTIONS(2270), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2278), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2286), 1, + anon_sym_PIPE, + ACTIONS(2288), 1, + anon_sym_AMP, + ACTIONS(2290), 1, + anon_sym_CARET, + ACTIONS(2292), 1, + anon_sym_is, + ACTIONS(2324), 1, + anon_sym_DOT, + ACTIONS(2336), 1, anon_sym_LBRACK, + STATE(1559), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, + ACTIONS(2272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2194), 2, + ACTIONS(2274), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2204), 2, + ACTIONS(2284), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1152), 2, + ACTIONS(2294), 2, + anon_sym_LT, + anon_sym_GT, + STATE(877), 2, + sym__not_in, + sym__is_not, + STATE(1407), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2202), 3, + ACTIONS(2282), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2076), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2276), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68910] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1672), 6, anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 19, + 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_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, - [69590] = 5, - ACTIONS(2449), 1, - sym_string_start, + sym_type_conversion, + [68956] = 8, + ACTIONS(2174), 1, + anon_sym_DOT, + ACTIONS(2176), 1, + anon_sym_LPAREN, + ACTIONS(2184), 1, + anon_sym_STAR_STAR, + ACTIONS(2186), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1004), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 5, + STATE(1233), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2405), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2360), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2403), 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_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, @@ -84832,18 +84298,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69640] = 3, + [69012] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 6, + ACTIONS(1672), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, + ACTIONS(1670), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -84875,22 +84341,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [69686] = 5, - ACTIONS(2452), 1, + [69058] = 5, + ACTIONS(324), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1006), 2, + STATE(1031), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 5, + ACTIONS(2354), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2360), 29, + ACTIONS(2352), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -84920,33 +84386,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69736] = 8, - ACTIONS(2160), 1, + [69108] = 8, + ACTIONS(2174), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2176), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2184), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2186), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1233), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2400), 5, + ACTIONS(2405), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 26, + ACTIONS(2403), 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, @@ -84967,141 +84434,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69792] = 20, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2300), 1, + [69164] = 10, + ACTIONS(2174), 1, anon_sym_DOT, - ACTIONS(2312), 1, - anon_sym_LBRACK, - ACTIONS(2404), 1, + ACTIONS(2176), 1, anon_sym_LPAREN, - ACTIONS(2412), 1, + ACTIONS(2184), 1, anon_sym_STAR_STAR, - ACTIONS(2420), 1, - anon_sym_PIPE, - ACTIONS(2422), 1, - anon_sym_AMP, - ACTIONS(2424), 1, - anon_sym_CARET, - ACTIONS(2426), 1, - anon_sym_is, - STATE(1566), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2186), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2406), 2, + ACTIONS(2178), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2418), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2428), 2, - anon_sym_LT, - anon_sym_GT, - STATE(941), 2, - sym__not_in, - sym__is_not, - STATE(1447), 2, + STATE(1233), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2416), 3, + ACTIONS(2188), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2078), 6, - anon_sym_COMMA, + ACTIONS(2405), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2403), 23, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2410), 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, - [69872] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [69224] = 14, + ACTIONS(2174), 1, + anon_sym_DOT, + ACTIONS(2176), 1, + anon_sym_LPAREN, + ACTIONS(2184), 1, + anon_sym_STAR_STAR, + ACTIONS(2186), 1, + anon_sym_LBRACK, + ACTIONS(2194), 1, + anon_sym_AMP, + ACTIONS(2196), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(2178), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2180), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2190), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1233), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2188), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2403), 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_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, - [69920] = 5, - ACTIONS(327), 1, - sym_string_start, + [69292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(993), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, + ACTIONS(1607), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(1605), 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, @@ -85117,45 +84580,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69970] = 13, - ACTIONS(2160), 1, + sym_type_conversion, + [69338] = 13, + ACTIONS(2174), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2176), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2184), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2186), 1, anon_sym_LBRACK, - ACTIONS(2182), 1, + ACTIONS(2196), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + ACTIONS(2178), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2166), 2, + ACTIONS(2180), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2176), 2, + ACTIONS(2190), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1181), 2, + STATE(1233), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2174), 3, + ACTIONS(2188), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_EQ, + ACTIONS(2405), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 18, + ACTIONS(2403), 18, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_RBRACE, @@ -85169,44 +84634,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70036] = 12, - ACTIONS(2160), 1, + [69404] = 12, + ACTIONS(2174), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2176), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2184), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2186), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + ACTIONS(2178), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2166), 2, + ACTIONS(2180), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2176), 2, + ACTIONS(2190), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1181), 2, + STATE(1233), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2174), 3, + ACTIONS(2188), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_EQ, + ACTIONS(2405), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 19, + ACTIONS(2403), 19, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_RBRACE, @@ -85221,29 +84686,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70100] = 8, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_STAR_STAR, - ACTIONS(2200), 1, - anon_sym_LBRACK, + [69468] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, + ACTIONS(1607), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 26, + ACTIONS(1605), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85251,6 +84707,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, @@ -85270,48 +84728,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70156] = 11, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_STAR_STAR, - ACTIONS(2200), 1, - anon_sym_LBRACK, + sym_type_conversion, + [69514] = 5, + ACTIONS(753), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, + STATE(1026), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1552), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2204), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1152), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2202), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 21, + ACTIONS(1547), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85321,30 +84774,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70218] = 5, - ACTIONS(775), 1, - sym_string_start, + [69564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1020), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, - anon_sym_as, + ACTIONS(2447), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2445), 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, @@ -85366,18 +84817,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70268] = 3, + [69610] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 6, + ACTIONS(1668), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 31, + ACTIONS(1666), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -85409,38 +84860,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70314] = 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, + [69656] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2443), 5, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 26, + ACTIONS(277), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85456,25 +84904,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70370] = 3, + [69704] = 5, + ACTIONS(2449), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 6, + STATE(1007), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2386), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, + ACTIONS(2384), 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, @@ -85483,7 +84934,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, @@ -85499,34 +84949,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70416] = 3, + [69754] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 6, - anon_sym_as, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 31, + ACTIONS(277), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_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, @@ -85542,31 +84993,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70462] = 5, - ACTIONS(775), 1, - sym_string_start, + [69802] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 5, - anon_sym_as, + ACTIONS(1552), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 29, + ACTIONS(1547), 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_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -85588,34 +85037,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70512] = 8, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2162), 1, - anon_sym_LPAREN, - ACTIONS(2170), 1, - anon_sym_STAR_STAR, - ACTIONS(2172), 1, - anon_sym_LBRACK, + [69850] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, + ACTIONS(1664), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 26, + ACTIONS(1662), 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, @@ -85636,25 +85080,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70568] = 5, - ACTIONS(2455), 1, + [69896] = 5, + ACTIONS(819), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, + STATE(1012), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 5, + ACTIONS(2354), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2360), 29, + ACTIONS(2352), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85663,6 +85106,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, @@ -85681,32 +85125,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70618] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [69946] = 5, + ACTIONS(2452), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + STATE(1012), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2386), 5, + anon_sym_as, 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(2384), 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_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, @@ -85725,43 +85170,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70666] = 14, - ACTIONS(2160), 1, + [69996] = 12, + ACTIONS(2210), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2212), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2222), 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(2164), 2, + ACTIONS(2214), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2166), 2, + ACTIONS(2216), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2176), 2, + ACTIONS(2226), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1181), 2, + STATE(1172), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2174), 3, + ACTIONS(2224), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2405), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 17, + ACTIONS(2403), 19, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -85772,6 +85213,8 @@ 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, @@ -85779,39 +85222,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70734] = 11, - ACTIONS(2160), 1, + [70060] = 13, + ACTIONS(2210), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2212), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2222), 1, anon_sym_LBRACK, + ACTIONS(2232), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + ACTIONS(2214), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2176), 2, + ACTIONS(2216), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2226), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1181), 2, + STATE(1172), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2174), 3, + ACTIONS(2224), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2405), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 21, + ACTIONS(2403), 18, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, @@ -85821,8 +85268,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85830,47 +85275,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70796] = 8, - ACTIONS(2160), 1, + [70126] = 14, + ACTIONS(2210), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2212), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2222), 1, anon_sym_LBRACK, + ACTIONS(2230), 1, + anon_sym_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + 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(1172), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2439), 5, - anon_sym_STAR, + ACTIONS(2224), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2437), 26, + ACTIONS(2403), 17, 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_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, @@ -85878,85 +85329,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70852] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2460), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2458), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, + [70194] = 10, + ACTIONS(2210), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(2212), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2220), 1, anon_sym_STAR_STAR, + ACTIONS(2222), 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, - [70898] = 5, - ACTIONS(729), 1, - sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(995), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, + ACTIONS(2214), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1172), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2224), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2403), 23, 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, @@ -85966,36 +85378,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70948] = 5, - ACTIONS(2462), 1, - sym_string_start, + sym_type_conversion, + [70254] = 8, + ACTIONS(2210), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + anon_sym_LPAREN, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1029), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 5, + STATE(1172), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2405), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2360), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2403), 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, @@ -86011,114 +85426,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70998] = 20, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2268), 1, + sym_type_conversion, + [70310] = 15, + ACTIONS(2210), 1, anon_sym_DOT, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2334), 1, + ACTIONS(2212), 1, anon_sym_LPAREN, - ACTIONS(2342), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2350), 1, + ACTIONS(2222), 1, + anon_sym_LBRACK, + ACTIONS(2228), 1, anon_sym_PIPE, - ACTIONS(2352), 1, + ACTIONS(2230), 1, anon_sym_AMP, - ACTIONS(2354), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2356), 1, - anon_sym_is, - STATE(1559), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2336), 2, + ACTIONS(2214), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2338), 2, + ACTIONS(2216), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2348), 2, + ACTIONS(2226), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2358), 2, - anon_sym_LT, - anon_sym_GT, - STATE(898), 2, - sym__not_in, - sym__is_not, - STATE(1282), 2, + STATE(1172), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2346), 3, + ACTIONS(2224), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2078), 6, - anon_sym_RPAREN, + ACTIONS(2401), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2399), 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, - ACTIONS(2340), 6, - anon_sym_in, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71078] = 15, - ACTIONS(2160), 1, + sym_type_conversion, + [70380] = 11, + ACTIONS(2210), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2212), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2222), 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, - ACTIONS(2164), 2, + ACTIONS(2214), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2166), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2176), 2, + ACTIONS(2226), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1181), 2, + STATE(1172), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2174), 3, + ACTIONS(2224), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2432), 3, + ACTIONS(2405), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2430), 16, + ACTIONS(2403), 21, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_PIPE, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -86126,29 +85533,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71148] = 3, + [70442] = 8, + ACTIONS(2210), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + anon_sym_LPAREN, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 6, - anon_sym_as, + STATE(1172), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2405), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2403), 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, @@ -86169,18 +85581,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71194] = 3, + [70498] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 6, + ACTIONS(1676), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, + ACTIONS(1674), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -86212,32 +85624,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71240] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [70544] = 5, + ACTIONS(819), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + STATE(1011), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1552), 5, + anon_sym_as, 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(1547), 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_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, @@ -86256,115 +85669,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71288] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1552), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1547), 31, - sym__newline, - anon_sym_SEMI, + [70594] = 20, + ACTIONS(2100), 1, + anon_sym_not, + ACTIONS(2174), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(2186), 1, + anon_sym_LBRACK, + ACTIONS(2212), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2228), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2230), 1, anon_sym_AMP, + ACTIONS(2232), 1, anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2234), 1, anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [71333] = 12, - ACTIONS(2268), 1, - anon_sym_DOT, - ACTIONS(2270), 1, - anon_sym_LPAREN, - ACTIONS(2278), 1, - anon_sym_STAR_STAR, - ACTIONS(2280), 1, - anon_sym_LBRACK, + STATE(1568), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(2214), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2274), 2, + ACTIONS(2216), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2284), 2, + ACTIONS(2226), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1389), 2, + ACTIONS(2236), 2, + anon_sym_LT, + anon_sym_GT, + STATE(921), 2, + sym__not_in, + sym__is_not, + STATE(1172), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, + ACTIONS(2224), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2398), 18, - anon_sym_RPAREN, + ACTIONS(2076), 6, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_is, + 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, - [71396] = 3, + [70674] = 5, + ACTIONS(2455), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + STATE(1024), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2386), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2384), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -86391,22 +85774,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71441] = 3, + [70724] = 5, + ACTIONS(775), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + STATE(988), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1552), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1547), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -86433,27 +85819,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71486] = 3, + [70774] = 5, + ACTIONS(753), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + STATE(1007), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2354), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2352), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -86475,18 +85864,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71531] = 3, + [70824] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(2460), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 31, + ACTIONS(2458), 32, sym__newline, + sym_string_start, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, @@ -86517,117 +85907,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71576] = 3, + [70870] = 20, + ACTIONS(2100), 1, + anon_sym_not, + ACTIONS(2296), 1, + anon_sym_DOT, + ACTIONS(2308), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2425), 1, + anon_sym_PIPE, + ACTIONS(2427), 1, + anon_sym_AMP, + ACTIONS(2429), 1, + anon_sym_CARET, + ACTIONS(2431), 1, + anon_sym_is, + STATE(1566), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(2411), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2413), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + STATE(905), 2, + sym__not_in, + sym__is_not, + STATE(1438), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2076), 6, 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_RBRACK, 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(2415), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71621] = 3, + [70950] = 15, + ACTIONS(2174), 1, + anon_sym_DOT, + ACTIONS(2176), 1, + anon_sym_LPAREN, + ACTIONS(2184), 1, + anon_sym_STAR_STAR, + ACTIONS(2186), 1, + anon_sym_LBRACK, + ACTIONS(2192), 1, + anon_sym_PIPE, + ACTIONS(2194), 1, + anon_sym_AMP, + ACTIONS(2196), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2178), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2180), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2190), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1233), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2188), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2401), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2399), 16, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_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, - [71666] = 3, + [71020] = 8, + ACTIONS(2174), 1, + anon_sym_DOT, + ACTIONS(2176), 1, + anon_sym_LPAREN, + ACTIONS(2184), 1, + anon_sym_STAR_STAR, + ACTIONS(2186), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + STATE(1233), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2443), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2489), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2441), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_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, @@ -86643,34 +86070,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71711] = 5, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [71076] = 5, + ACTIONS(2462), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + STATE(1031), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2386), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2384), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86686,119 +86115,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71760] = 5, + [71126] = 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + STATE(1172), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2397), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(670), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2395), 26, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_if, + anon_sym_COLON, + 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, - ACTIONS(663), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71809] = 5, + sym_type_conversion, + [71182] = 5, + ACTIONS(324), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + STATE(995), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1552), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(670), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71858] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [71232] = 8, + ACTIONS(2174), 1, + anon_sym_DOT, + ACTIONS(2176), 1, + anon_sym_LPAREN, + ACTIONS(2184), 1, + anon_sym_STAR_STAR, + ACTIONS(2186), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + STATE(1233), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2397), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2395), 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_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86818,34 +86256,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71905] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [71288] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + ACTIONS(1676), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1674), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_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, @@ -86861,34 +86298,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71952] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [71333] = 8, + ACTIONS(2324), 1, + anon_sym_DOT, + ACTIONS(2326), 1, + anon_sym_LPAREN, + ACTIONS(2334), 1, + anon_sym_STAR_STAR, + ACTIONS(2336), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + STATE(1355), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2443), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2441), 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, @@ -86904,28 +86345,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71999] = 8, - ACTIONS(2367), 1, + [71388] = 8, + ACTIONS(2356), 1, anon_sym_DOT, - ACTIONS(2369), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2368), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1403), 2, + STATE(1265), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2443), 5, + ACTIONS(2405), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 25, + ACTIONS(2403), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -86951,28 +86392,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72054] = 8, - ACTIONS(2367), 1, + [71443] = 10, + ACTIONS(2356), 1, anon_sym_DOT, - ACTIONS(2369), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2368), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1403), 2, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1265), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2439), 5, - anon_sym_STAR, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2437), 25, + ACTIONS(2403), 22, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -86980,15 +86426,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_else, anon_sym_in, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86998,74 +86441,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72109] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(670), 1, - anon_sym_COLON, + [71502] = 14, + ACTIONS(2356), 1, + anon_sym_DOT, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2368), 1, + anon_sym_LBRACK, + ACTIONS(2376), 1, + anon_sym_AMP, + ACTIONS(2378), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, - anon_sym_as, + ACTIONS(2360), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1265), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2403), 16, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, 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, 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, - [72160] = 6, - ACTIONS(292), 1, + [71569] = 4, + ACTIONS(1554), 1, anon_sym_COLON_EQ, - ACTIONS(670), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, + ACTIONS(1552), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 27, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -87088,29 +86537,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72211] = 6, - ACTIONS(1554), 1, + [71616] = 4, + ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(1658), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1655), 5, + ACTIONS(279), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 27, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -87133,33 +86580,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72262] = 3, + [71663] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(279), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(277), 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, @@ -87175,86 +86623,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72307] = 8, - ACTIONS(2367), 1, + [71710] = 13, + ACTIONS(2356), 1, anon_sym_DOT, - ACTIONS(2369), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2368), 1, anon_sym_LBRACK, + ACTIONS(2378), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1403), 2, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1265), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2400), 5, - anon_sym_STAR, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, + ACTIONS(2403), 17, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, - anon_sym_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, - [72362] = 11, - ACTIONS(2367), 1, + [71775] = 12, + ACTIONS(2356), 1, anon_sym_DOT, - ACTIONS(2369), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2368), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2383), 2, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1403), 2, + STATE(1265), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2381), 3, + ACTIONS(2370), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2405), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 20, + ACTIONS(2403), 18, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, @@ -87265,57 +86720,46 @@ 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, - [72423] = 15, - ACTIONS(2367), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_AMP, - ACTIONS(2389), 1, - anon_sym_CARET, + [71838] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(670), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(706), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2432), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2430), 15, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(663), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_not, anon_sym_and, @@ -87326,35 +86770,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72492] = 8, - ACTIONS(2367), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_LBRACK, + [71887] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, + ACTIONS(2467), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, + ACTIONS(2465), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87373,46 +86812,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72547] = 10, - ACTIONS(2367), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_LBRACK, + [71932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2471), 5, anon_sym_STAR, - anon_sym_SLASH, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 22, + ACTIONS(2469), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_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, @@ -87422,50 +86854,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72606] = 14, - ACTIONS(2367), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, - anon_sym_AMP, - ACTIONS(2389), 1, - anon_sym_CARET, + [71977] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(670), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(706), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2398), 16, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(663), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87475,130 +86898,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72673] = 13, - ACTIONS(2367), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2389), 1, - anon_sym_CARET, + [72026] = 5, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(279), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2373), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 17, - anon_sym_COMMA, + ACTIONS(277), 28, + anon_sym_DOT, + anon_sym_LPAREN, 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, 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, - [72738] = 12, - ACTIONS(2367), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_LBRACK, + sym_type_conversion, + [72075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2447), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2445), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, + 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, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [72120] = 5, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 6, + anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 18, - anon_sym_COMMA, + ACTIONS(277), 28, + anon_sym_DOT, + anon_sym_LPAREN, 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, 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, - [72801] = 3, + sym_type_conversion, + [72169] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(741), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(277), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -87620,17 +87072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72846] = 3, + [72218] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(2475), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 31, + ACTIONS(2473), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87662,21 +87114,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72891] = 3, + [72263] = 5, + ACTIONS(797), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + STATE(1119), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2354), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2352), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -87686,6 +87139,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, @@ -87704,17 +87158,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72936] = 3, + [72312] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 31, + ACTIONS(277), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87746,17 +87200,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72981] = 3, + [72357] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, + ACTIONS(277), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87788,17 +87242,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73026] = 3, + [72402] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(1664), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, + ACTIONS(1662), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87830,34 +87284,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73071] = 5, - ACTIONS(1549), 1, - anon_sym_COMMA, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [72447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(1668), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 28, + 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, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87873,62 +87326,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73120] = 5, + [72492] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1652), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1648), 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, - [73169] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(1653), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 31, + ACTIONS(1648), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87960,33 +87368,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73214] = 6, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(2497), 1, - anon_sym_LBRACK, - STATE(1925), 1, - sym_type_parameter, + [72537] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(1631), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(1626), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88005,17 +87410,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73265] = 3, + [72582] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(1607), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 31, + ACTIONS(1605), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88047,82 +87452,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73310] = 8, - ACTIONS(2300), 1, - anon_sym_DOT, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_STAR_STAR, - ACTIONS(2312), 1, - anon_sym_LBRACK, + [72627] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2443), 5, - anon_sym_as, + ACTIONS(1607), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 25, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [73365] = 8, - ACTIONS(2300), 1, + ACTIONS(1605), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(2302), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_STAR_STAR, - ACTIONS(2312), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2439), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2437), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88141,17 +87494,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73420] = 3, + [72672] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(2479), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 31, + ACTIONS(2477), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88183,33 +87536,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73465] = 3, + [72717] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(1552), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1547), 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, @@ -88225,17 +87578,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73510] = 3, + sym_type_conversion, + [72764] = 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, @@ -88267,35 +87621,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73555] = 8, - ACTIONS(2300), 1, - anon_sym_DOT, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_STAR_STAR, - ACTIONS(2312), 1, - anon_sym_LBRACK, + [72809] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, - anon_sym_as, + ACTIONS(1672), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, + ACTIONS(1670), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88314,142 +87663,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73610] = 11, - ACTIONS(2300), 1, - anon_sym_DOT, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_STAR_STAR, - ACTIONS(2312), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2316), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2314), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2398), 20, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [73671] = 15, - ACTIONS(2300), 1, - anon_sym_DOT, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_STAR_STAR, - ACTIONS(2312), 1, - anon_sym_LBRACK, - ACTIONS(2318), 1, - anon_sym_PIPE, - ACTIONS(2320), 1, - anon_sym_AMP, - ACTIONS(2322), 1, - anon_sym_CARET, + [72854] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2304), 2, + ACTIONS(279), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2306), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2316), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2314), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2432), 3, - anon_sym_as, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2430), 15, + ACTIONS(277), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_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, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73740] = 8, - ACTIONS(2300), 1, - anon_sym_DOT, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_STAR_STAR, - ACTIONS(2312), 1, - anon_sym_LBRACK, + sym_type_conversion, + [72901] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, - anon_sym_as, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, + ACTIONS(277), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_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, @@ -88465,46 +87748,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73795] = 10, - ACTIONS(2300), 1, - anon_sym_DOT, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_STAR_STAR, - ACTIONS(2312), 1, - anon_sym_LBRACK, + sym_type_conversion, + [72948] = 5, + ACTIONS(797), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2304), 2, + STATE(1054), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1552), 4, anon_sym_STAR, anon_sym_SLASH, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2314), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 22, + ACTIONS(1547), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88514,189 +87793,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73854] = 14, - ACTIONS(2300), 1, - anon_sym_DOT, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_STAR_STAR, - ACTIONS(2312), 1, - anon_sym_LBRACK, - ACTIONS(2320), 1, - anon_sym_AMP, - ACTIONS(2322), 1, - anon_sym_CARET, + [72997] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2304), 2, + ACTIONS(2483), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2306), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2316), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2314), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 16, + 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_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73921] = 13, - ACTIONS(2300), 1, - anon_sym_DOT, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_STAR_STAR, - ACTIONS(2312), 1, - anon_sym_LBRACK, - ACTIONS(2322), 1, - anon_sym_CARET, + [73042] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2304), 2, + ACTIONS(2487), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2306), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2316), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2314), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 17, + ACTIONS(2485), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73986] = 12, - ACTIONS(2300), 1, + [73087] = 11, + ACTIONS(2356), 1, anon_sym_DOT, - ACTIONS(2302), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2310), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2312), 1, + ACTIONS(2368), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2304), 2, + ACTIONS(2360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2306), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2316), 2, + ACTIONS(2372), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1315), 2, + STATE(1265), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2314), 3, + ACTIONS(2370), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_as, + ACTIONS(2405), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 18, + ACTIONS(2403), 20, 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_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, - [74049] = 3, + [73148] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, - anon_sym_as, + ACTIONS(2491), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 31, - sym_string_start, + ACTIONS(2489), 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, @@ -88712,17 +87969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74094] = 3, + [73193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(2495), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 31, + ACTIONS(2493), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88754,33 +88011,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74139] = 3, + [73238] = 8, + ACTIONS(2356), 1, + anon_sym_DOT, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2368), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, - anon_sym_as, + STATE(1265), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2405), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2403), 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_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, @@ -88796,33 +88058,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74184] = 3, + [73293] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(2460), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2458), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, 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, @@ -88838,33 +88100,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74229] = 3, + [73338] = 5, + ACTIONS(1549), 1, + anon_sym_COMMA, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(1552), 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(1547), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88880,27 +88143,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74274] = 3, + sym_type_conversion, + [73387] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(741), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(277), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -88922,127 +88188,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74319] = 3, + [73436] = 12, + ACTIONS(2268), 1, + anon_sym_DOT, + ACTIONS(2270), 1, + anon_sym_LPAREN, + ACTIONS(2278), 1, + anon_sym_STAR_STAR, + ACTIONS(2280), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + ACTIONS(2272), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2274), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2284), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1407), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2282), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2403), 18, + 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, 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, - [74364] = 8, - ACTIONS(2332), 1, + [73499] = 13, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2334), 1, + ACTIONS(2270), 1, anon_sym_LPAREN, - ACTIONS(2342), 1, + ACTIONS(2278), 1, anon_sym_STAR_STAR, - ACTIONS(2344), 1, + ACTIONS(2280), 1, anon_sym_LBRACK, + ACTIONS(2290), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1282), 2, + ACTIONS(2272), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2274), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2284), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1407), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2443), 5, - anon_sym_STAR, + ACTIONS(2282), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 25, + ACTIONS(2403), 17, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74419] = 8, - ACTIONS(2332), 1, - anon_sym_DOT, - ACTIONS(2334), 1, - anon_sym_LPAREN, - ACTIONS(2342), 1, - anon_sym_STAR_STAR, - ACTIONS(2344), 1, - anon_sym_LBRACK, + [73564] = 6, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, + ACTIONS(1624), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1282), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2439), 5, + ACTIONS(1616), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1621), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2437), 25, - anon_sym_RPAREN, + ACTIONS(1618), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89058,19 +88336,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74474] = 3, + [73615] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, + ACTIONS(2499), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 31, - sym_string_start, + ACTIONS(2497), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -89083,7 +88363,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, @@ -89099,36 +88378,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [74519] = 8, - ACTIONS(2332), 1, - anon_sym_DOT, - ACTIONS(2334), 1, - anon_sym_LPAREN, - ACTIONS(2342), 1, - anon_sym_STAR_STAR, - ACTIONS(2344), 1, - anon_sym_LBRACK, + [73660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1282), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, + ACTIONS(2503), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, - anon_sym_RPAREN, + ACTIONS(2501), 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, @@ -89147,47 +88420,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74574] = 11, - ACTIONS(2332), 1, + [73705] = 15, + ACTIONS(2356), 1, anon_sym_DOT, - ACTIONS(2334), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2342), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2344), 1, + ACTIONS(2368), 1, anon_sym_LBRACK, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_AMP, + ACTIONS(2378), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2336), 2, + ACTIONS(2360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 2, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1282), 2, + STATE(1265), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2346), 3, + ACTIONS(2370), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2401), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 20, - anon_sym_RPAREN, + ACTIONS(2399), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [73774] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2507), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2505), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, 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, @@ -89197,51 +88516,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74635] = 15, - ACTIONS(2332), 1, + [73819] = 14, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2334), 1, + ACTIONS(2270), 1, anon_sym_LPAREN, - ACTIONS(2342), 1, + ACTIONS(2278), 1, anon_sym_STAR_STAR, - ACTIONS(2344), 1, + ACTIONS(2280), 1, anon_sym_LBRACK, - ACTIONS(2350), 1, - anon_sym_PIPE, - ACTIONS(2352), 1, + ACTIONS(2288), 1, anon_sym_AMP, - ACTIONS(2354), 1, + ACTIONS(2290), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2336), 2, + ACTIONS(2272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2338), 2, + ACTIONS(2274), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2348), 2, + ACTIONS(2284), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1282), 2, + STATE(1407), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2346), 3, + ACTIONS(2282), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2432), 3, + ACTIONS(2405), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2430), 15, + ACTIONS(2403), 16, 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, @@ -89251,28 +88569,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74704] = 8, - ACTIONS(2332), 1, + [73886] = 10, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2334), 1, + ACTIONS(2270), 1, anon_sym_LPAREN, - ACTIONS(2342), 1, + ACTIONS(2278), 1, anon_sym_STAR_STAR, - ACTIONS(2344), 1, + ACTIONS(2280), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1282), 2, + ACTIONS(2272), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1407), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2400), 5, - anon_sym_STAR, + ACTIONS(2282), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, + ACTIONS(2403), 22, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -89280,15 +88603,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, @@ -89298,46 +88618,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74759] = 10, - ACTIONS(2332), 1, + [73945] = 8, + ACTIONS(2324), 1, anon_sym_DOT, - ACTIONS(2334), 1, + ACTIONS(2326), 1, anon_sym_LPAREN, - ACTIONS(2342), 1, + ACTIONS(2334), 1, anon_sym_STAR_STAR, - ACTIONS(2344), 1, + ACTIONS(2336), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2336), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1282), 2, + STATE(1355), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2346), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_EQ, + ACTIONS(2405), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 22, + ACTIONS(2403), 25, 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_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, @@ -89347,186 +88665,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74818] = 14, - ACTIONS(2332), 1, + [74000] = 8, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2334), 1, + ACTIONS(2270), 1, anon_sym_LPAREN, - ACTIONS(2342), 1, + ACTIONS(2278), 1, anon_sym_STAR_STAR, - ACTIONS(2344), 1, + ACTIONS(2280), 1, anon_sym_LBRACK, - ACTIONS(2352), 1, - anon_sym_AMP, - ACTIONS(2354), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2338), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2348), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1282), 2, + STATE(1407), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2346), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2405), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 16, + ACTIONS(2403), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74885] = 13, - ACTIONS(2332), 1, + [74055] = 11, + ACTIONS(2324), 1, anon_sym_DOT, - ACTIONS(2334), 1, + ACTIONS(2326), 1, anon_sym_LPAREN, - ACTIONS(2342), 1, + ACTIONS(2334), 1, anon_sym_STAR_STAR, - ACTIONS(2344), 1, + ACTIONS(2336), 1, anon_sym_LBRACK, - ACTIONS(2354), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2336), 2, + ACTIONS(2328), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2338), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2348), 2, + ACTIONS(2340), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1282), 2, + STATE(1355), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2346), 3, + ACTIONS(2338), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_EQ, + ACTIONS(2405), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 17, + ACTIONS(2403), 20, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_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, - [74950] = 12, - ACTIONS(2332), 1, + [74116] = 15, + ACTIONS(2324), 1, anon_sym_DOT, - ACTIONS(2334), 1, + ACTIONS(2326), 1, anon_sym_LPAREN, - ACTIONS(2342), 1, + ACTIONS(2334), 1, anon_sym_STAR_STAR, - ACTIONS(2344), 1, + ACTIONS(2336), 1, anon_sym_LBRACK, + ACTIONS(2342), 1, + anon_sym_PIPE, + ACTIONS(2344), 1, + anon_sym_AMP, + ACTIONS(2346), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2336), 2, + ACTIONS(2328), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2338), 2, + ACTIONS(2330), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2348), 2, + ACTIONS(2340), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1282), 2, + STATE(1355), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2346), 3, + ACTIONS(2338), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_EQ, + ACTIONS(2401), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 18, + ACTIONS(2399), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_PIPE, anon_sym_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, - [75013] = 3, + [74185] = 8, + ACTIONS(2324), 1, + anon_sym_DOT, + ACTIONS(2326), 1, + anon_sym_LPAREN, + ACTIONS(2334), 1, + anon_sym_STAR_STAR, + ACTIONS(2336), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + STATE(1355), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2405), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2403), 25, + 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, @@ -89545,41 +88863,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75058] = 5, - ACTIONS(819), 1, - sym_string_start, + [74240] = 10, + ACTIONS(2324), 1, + anon_sym_DOT, + ACTIONS(2326), 1, + anon_sym_LPAREN, + ACTIONS(2334), 1, + anon_sym_STAR_STAR, + ACTIONS(2336), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1111), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 4, + ACTIONS(2328), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(1355), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2338), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2403), 22, + 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, 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, @@ -89589,76 +88912,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75107] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [74299] = 14, + ACTIONS(2324), 1, + anon_sym_DOT, + ACTIONS(2326), 1, + anon_sym_LPAREN, + ACTIONS(2334), 1, + anon_sym_STAR_STAR, + ACTIONS(2336), 1, + anon_sym_LBRACK, + ACTIONS(2344), 1, + anon_sym_AMP, + ACTIONS(2346), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2328), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2330), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2340), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1355), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2338), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2403), 16, + 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, 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, - [75154] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [74366] = 8, + ACTIONS(2324), 1, + anon_sym_DOT, + ACTIONS(2326), 1, + anon_sym_LPAREN, + ACTIONS(2334), 1, + anon_sym_STAR_STAR, + ACTIONS(2336), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + STATE(1355), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2397), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2395), 25, + 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, @@ -89674,34 +89012,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75201] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [74421] = 8, + ACTIONS(2356), 1, + anon_sym_DOT, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2368), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + STATE(1265), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2397), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2395), 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, @@ -89717,23 +89059,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75248] = 5, - ACTIONS(819), 1, - sym_string_start, + [74476] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1112), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 4, + ACTIONS(2511), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 29, + ACTIONS(2509), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -89743,7 +89083,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, @@ -89762,118 +89101,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75297] = 5, - ACTIONS(2535), 1, - sym_string_start, + [74521] = 13, + ACTIONS(2324), 1, + anon_sym_DOT, + ACTIONS(2326), 1, + anon_sym_LPAREN, + ACTIONS(2334), 1, + anon_sym_STAR_STAR, + ACTIONS(2336), 1, + anon_sym_LBRACK, + ACTIONS(2346), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1112), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 4, + ACTIONS(2328), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2330), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2340), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1355), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2338), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2360), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2403), 17, + 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, - 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, - [75346] = 3, + [74586] = 15, + ACTIONS(2268), 1, + anon_sym_DOT, + ACTIONS(2270), 1, + anon_sym_LPAREN, + ACTIONS(2278), 1, + anon_sym_STAR_STAR, + ACTIONS(2280), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_PIPE, + ACTIONS(2288), 1, + anon_sym_AMP, + ACTIONS(2290), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2272), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2274), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2284), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1407), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2282), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2401), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2399), 15, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75391] = 5, - ACTIONS(292), 1, + [74655] = 6, + ACTIONS(1554), 1, anon_sym_COLON_EQ, - ACTIONS(763), 1, - anon_sym_EQ, + ACTIONS(2513), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1552), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1547), 27, + sym__newline, + anon_sym_SEMI, 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, @@ -89892,29 +89252,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75440] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(763), 1, - anon_sym_EQ, + [74706] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2517), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2515), 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, @@ -89936,41 +89294,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75489] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(2542), 1, - anon_sym_EQ, + [74751] = 11, + ACTIONS(2268), 1, + anon_sym_DOT, + ACTIONS(2270), 1, + anon_sym_LPAREN, + ACTIONS(2278), 1, + anon_sym_STAR_STAR, + ACTIONS(2280), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, - anon_sym_as, + ACTIONS(2272), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2284), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1407), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2282), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2403), 20, 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_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, @@ -89980,30 +89344,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75538] = 3, + [74812] = 8, + ACTIONS(2268), 1, + anon_sym_DOT, + ACTIONS(2270), 1, + anon_sym_LPAREN, + ACTIONS(2278), 1, + anon_sym_STAR_STAR, + ACTIONS(2280), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + STATE(1407), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2405), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2403), 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, @@ -90022,17 +89391,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75583] = 3, + [74867] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2521), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 31, + ACTIONS(2519), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90064,21 +89433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75628] = 3, + [74912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, + ACTIONS(2460), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2458), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -90091,6 +89458,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, @@ -90106,79 +89474,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75673] = 6, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(2544), 1, - anon_sym_LBRACK, - STATE(1890), 1, - sym_type_parameter, + sym_type_conversion, + [74957] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(1621), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1624), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, - sym__newline, - anon_sym_SEMI, + ACTIONS(1618), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1616), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_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, - [75724] = 8, - ACTIONS(2268), 1, + [75006] = 8, + ACTIONS(2356), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2368), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1389), 2, + STATE(1265), 2, sym_argument_list, sym_generator_expression, ACTIONS(2443), 5, - anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, ACTIONS(2441), 25, - 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_AT, anon_sym_DASH, @@ -90198,203 +89566,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75779] = 8, - ACTIONS(2268), 1, + [75061] = 12, + ACTIONS(2296), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2298), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2306), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2308), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1389), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2439), 5, - anon_sym_as, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2437), 25, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2302), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2312), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(1379), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2310), 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, - [75834] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2405), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2403), 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_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, - [75879] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2550), 31, - sym__newline, - anon_sym_SEMI, + [75124] = 13, + ACTIONS(2296), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(2298), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2306), 1, anon_sym_STAR_STAR, + ACTIONS(2308), 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, + ACTIONS(2318), 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, - [75924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(2300), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2302), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2312), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1379), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2310), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2403), 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, - [75969] = 3, + [75189] = 6, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, + ACTIONS(2523), 1, + anon_sym_LBRACK, + STATE(1892), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(1552), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1547), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90413,35 +89714,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76014] = 8, - ACTIONS(2268), 1, + [75240] = 8, + ACTIONS(2296), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2298), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2306), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2308), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1389), 2, + STATE(1379), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2400), 5, + ACTIONS(2397), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, - anon_sym_RPAREN, + ACTIONS(2395), 25, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90460,139 +89761,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76069] = 11, - ACTIONS(2268), 1, + [75295] = 14, + ACTIONS(2296), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2298), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2306), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2308), 1, anon_sym_LBRACK, + ACTIONS(2316), 1, + anon_sym_AMP, + ACTIONS(2318), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2284), 2, + ACTIONS(2302), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2312), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1389), 2, + STATE(1379), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, + ACTIONS(2310), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2405), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 20, - anon_sym_RPAREN, + ACTIONS(2403), 16, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76130] = 15, - ACTIONS(2268), 1, + [75362] = 10, + ACTIONS(2296), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2298), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2306), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2308), 1, anon_sym_LBRACK, - ACTIONS(2286), 1, - anon_sym_PIPE, - ACTIONS(2288), 1, - anon_sym_AMP, - ACTIONS(2290), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2274), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2284), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1389), 2, + STATE(1379), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, + ACTIONS(2310), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2432), 3, + ACTIONS(2405), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2430), 15, - anon_sym_RPAREN, + ACTIONS(2403), 22, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76199] = 8, - ACTIONS(2268), 1, + [75421] = 8, + ACTIONS(2296), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2298), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2306), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2308), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1389), 2, + STATE(1379), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2400), 5, + ACTIONS(2405), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, - anon_sym_RPAREN, + ACTIONS(2403), 25, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90611,188 +89910,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76254] = 10, - ACTIONS(2268), 1, + [75476] = 15, + ACTIONS(2296), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2298), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2306), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2308), 1, anon_sym_LBRACK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2316), 1, + anon_sym_AMP, + ACTIONS(2318), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1389), 2, + ACTIONS(2302), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2312), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1379), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, + ACTIONS(2310), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2401), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 22, - anon_sym_RPAREN, + ACTIONS(2399), 15, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACK, 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, - [76313] = 14, - ACTIONS(2268), 1, + [75545] = 11, + ACTIONS(2296), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2298), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2306), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2308), 1, anon_sym_LBRACK, - ACTIONS(2288), 1, - anon_sym_AMP, - ACTIONS(2290), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2274), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2284), 2, + ACTIONS(2312), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1389), 2, + STATE(1379), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, + ACTIONS(2310), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2405), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 16, - anon_sym_RPAREN, + ACTIONS(2403), 20, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76380] = 13, - ACTIONS(2268), 1, + [75606] = 8, + ACTIONS(2296), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2298), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2306), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2308), 1, anon_sym_LBRACK, - ACTIONS(2290), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2274), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2284), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1389), 2, + STATE(1379), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2405), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 17, - anon_sym_RPAREN, + ACTIONS(2403), 25, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76445] = 5, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [75661] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1646), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1641), 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, @@ -90808,18 +90103,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76494] = 3, + [75706] = 5, + ACTIONS(2525), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + STATE(1119), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2386), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 30, + ACTIONS(2384), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -90830,10 +90128,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, @@ -90849,33 +90147,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76538] = 3, + [75755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, - anon_sym_as, + ACTIONS(2530), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 30, + ACTIONS(2528), 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, @@ -90891,34 +90189,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76582] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [75800] = 8, + ACTIONS(2296), 1, + anon_sym_DOT, + ACTIONS(2298), 1, + anon_sym_LPAREN, + ACTIONS(2306), 1, + anon_sym_STAR_STAR, + ACTIONS(2308), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 2, + STATE(1379), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2443), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2441), 25, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_RBRACK, - ACTIONS(1552), 5, + 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, + [75855] = 6, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(670), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(663), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(665), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(706), 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, @@ -90934,32 +90281,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76630] = 3, + [75906] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, - anon_sym_as, + ACTIONS(2534), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 30, + ACTIONS(2532), 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, @@ -90975,32 +90323,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76674] = 4, - ACTIONS(1611), 1, - anon_sym_COMMA, + [75951] = 12, + ACTIONS(2324), 1, + anon_sym_DOT, + ACTIONS(2326), 1, + anon_sym_LPAREN, + ACTIONS(2334), 1, + anon_sym_STAR_STAR, + ACTIONS(2336), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, + ACTIONS(2328), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2330), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2340), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1355), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2338), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2405), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 29, + ACTIONS(2403), 18, + 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_CARET, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [76014] = 8, + ACTIONS(2268), 1, anon_sym_DOT, + ACTIONS(2270), 1, anon_sym_LPAREN, + ACTIONS(2278), 1, + anon_sym_STAR_STAR, + ACTIONS(2280), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1407), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2443), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2441), 25, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [76069] = 8, + ACTIONS(2268), 1, + anon_sym_DOT, + ACTIONS(2270), 1, + anon_sym_LPAREN, + ACTIONS(2278), 1, anon_sym_STAR_STAR, + ACTIONS(2280), 1, anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1407), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2397), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2395), 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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91016,22 +90468,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76720] = 4, - ACTIONS(1549), 1, - anon_sym_COMMA, + [76124] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(2447), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2445), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -91059,20 +90510,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [76766] = 3, + [76169] = 5, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, + ACTIONS(2536), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + ACTIONS(1552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 30, - sym_string_start, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -91081,7 +90536,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, @@ -91100,21 +90554,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76810] = 4, - ACTIONS(1625), 1, - anon_sym_COMMA, + [76218] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(2540), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 29, + ACTIONS(2538), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -91125,7 +90581,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, @@ -91141,112 +90596,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76856] = 5, + [76263] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(1552), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(670), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(1547), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76904] = 5, + [76308] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2544), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(670), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2542), 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(663), 16, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [76353] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2548), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2546), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76952] = 4, + [76398] = 6, ACTIONS(292), 1, anon_sym_COLON_EQ, + ACTIONS(670), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(663), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(665), 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(706), 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_in, @@ -91255,6 +90751,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, @@ -91270,27 +90767,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76998] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [76449] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2552), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2550), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91312,33 +90809,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77044] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [76494] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(279), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 28, + ACTIONS(277), 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, @@ -91354,21 +90849,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77090] = 4, - ACTIONS(1639), 1, - anon_sym_COMMA, + sym_type_conversion, + [76538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(2487), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + ACTIONS(2485), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -91396,25 +90891,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77136] = 3, + [76582] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2521), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(2519), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91437,23 +90931,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77180] = 3, + sym_type_conversion, + [76626] = 5, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1549), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(1547), 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, @@ -91462,7 +90960,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, @@ -91478,25 +90975,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77224] = 3, + [76674] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(2530), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2528), 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, @@ -91519,23 +91015,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77268] = 3, + sym_type_conversion, + [76718] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2447), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(2445), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -91544,7 +91042,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, @@ -91560,32 +91057,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77312] = 3, + [76762] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, - anon_sym_as, + ACTIONS(2511), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 30, - sym_string_start, + ACTIONS(2509), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91601,25 +91097,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77356] = 3, + sym_type_conversion, + [76806] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, - anon_sym_as, + ACTIONS(2467), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(2465), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91642,25 +91138,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77400] = 3, + sym_type_conversion, + [76850] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, - anon_sym_as, + ACTIONS(2534), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 30, + ACTIONS(2532), 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, @@ -91683,23 +91179,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77444] = 3, + sym_type_conversion, + [76894] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(284), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 30, + ACTIONS(277), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -91708,7 +91208,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, @@ -91724,23 +91223,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77488] = 3, + [76942] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(284), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 30, + ACTIONS(277), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -91749,7 +91251,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, @@ -91765,25 +91266,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77532] = 3, + [76990] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, - anon_sym_as, + ACTIONS(1664), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 30, + ACTIONS(1662), 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, @@ -91806,17 +91306,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77576] = 3, + sym_type_conversion, + [77034] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2475), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(2473), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91847,25 +91348,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77620] = 3, + [77078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_as, + ACTIONS(2483), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 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, @@ -91888,25 +91388,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77664] = 3, + sym_type_conversion, + [77122] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, - anon_sym_as, + ACTIONS(2552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 30, + 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_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91929,32 +91429,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77708] = 3, + sym_type_conversion, + [77166] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, - anon_sym_as, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 30, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91970,23 +91472,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77752] = 3, + [77212] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(1552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 30, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -91995,7 +91499,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, @@ -92011,23 +91514,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77796] = 3, + [77258] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 30, + ACTIONS(277), 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, @@ -92036,7 +91541,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, @@ -92052,23 +91556,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77840] = 3, + [77304] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 30, + ACTIONS(277), 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, @@ -92077,7 +91583,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, @@ -92093,32 +91598,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77884] = 3, + [77350] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, - anon_sym_as, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92134,25 +91640,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77928] = 3, + [77396] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(1552), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1547), 28, + anon_sym_DOT, + anon_sym_LPAREN, + 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, + 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, + [77442] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1676), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + ACTIONS(1674), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92175,19 +91722,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77972] = 3, + sym_type_conversion, + [77486] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(1672), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 30, + ACTIONS(1670), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -92200,7 +91749,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, @@ -92216,19 +91764,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78016] = 3, + [77530] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(1672), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 30, + ACTIONS(1670), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -92241,7 +91790,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, @@ -92257,25 +91805,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78060] = 3, + [77574] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, - anon_sym_as, + ACTIONS(2548), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 30, + ACTIONS(2546), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + 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, @@ -92298,25 +91845,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78104] = 3, + sym_type_conversion, + [77618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, - anon_sym_as, + ACTIONS(2544), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 30, + ACTIONS(2542), 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, @@ -92339,17 +91886,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78148] = 3, + sym_type_conversion, + [77662] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(2491), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 30, + ACTIONS(2489), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92380,75 +91928,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78192] = 4, + [77706] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1655), 5, - anon_sym_as, + ACTIONS(2475), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 27, + ACTIONS(2473), 30, 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, - [78238] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 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, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92464,75 +91968,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78284] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [77750] = 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), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78330] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1552), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1547), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_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, @@ -92548,17 +92009,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78376] = 3, + sym_type_conversion, + [77794] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2499), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(2497), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92589,17 +92051,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78420] = 3, + [77838] = 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), 30, + ACTIONS(2505), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92630,17 +92092,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78464] = 3, + [77882] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2517), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2515), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92671,26 +92133,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78508] = 3, + [77926] = 5, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + ACTIONS(1616), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1621), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 30, - sym_string_start, + ACTIONS(1618), 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_LBRACK, @@ -92712,31 +92176,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78552] = 3, + [77974] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(663), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(665), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(706), 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, @@ -92752,32 +92219,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78596] = 3, + [78022] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(663), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(665), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(706), 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, @@ -92793,18 +92262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78640] = 3, + [78070] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(2503), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 30, + ACTIONS(2501), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92835,24 +92303,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78684] = 3, + [78114] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(1552), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 30, + ACTIONS(1547), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92875,18 +92344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78728] = 3, + [78158] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(2540), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 30, + ACTIONS(2538), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92917,20 +92385,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78772] = 3, + [78202] = 4, + ACTIONS(1643), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(1646), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 30, + ACTIONS(1641), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -92958,60 +92427,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78816] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [78248] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(279), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 27, - 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, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78864] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(1668), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(1666), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93042,17 +92468,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78908] = 3, + [78292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1607), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(1605), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93083,17 +92509,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78952] = 3, + [78336] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(1607), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 30, + ACTIONS(1605), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93124,17 +92550,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78996] = 3, + [78380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 30, + ACTIONS(1670), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93165,17 +92591,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79040] = 3, + [78424] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 30, + ACTIONS(1670), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93206,20 +92632,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79084] = 3, + [78468] = 4, + ACTIONS(1549), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(1552), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 30, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -93247,17 +92674,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79128] = 3, + [78514] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(2471), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 30, + ACTIONS(2469), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93288,19 +92715,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79172] = 3, + [78558] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2447), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(2445), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -93312,7 +92741,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, @@ -93328,41 +92756,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79216] = 3, + [78602] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(1621), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1624), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + ACTIONS(1618), 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(1616), 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, @@ -93370,17 +92799,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79260] = 3, + [78650] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(1646), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 30, + ACTIONS(1641), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93411,29 +92840,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79304] = 3, + [78694] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(663), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(665), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(706), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -93452,19 +92883,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79348] = 3, + [78742] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(1607), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 30, + ACTIONS(1605), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -93477,7 +92909,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, @@ -93493,17 +92924,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79392] = 3, + [78786] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(1607), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 30, + ACTIONS(1605), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93534,31 +92965,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79436] = 3, + [78830] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(1668), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, 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_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, @@ -93574,32 +93006,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79480] = 3, + [78874] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(2447), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 30, + ACTIONS(2445), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93615,26 +93047,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79524] = 3, + [78918] = 4, + ACTIONS(1628), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, - anon_sym_as, + ACTIONS(1631), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 30, + ACTIONS(1626), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93657,31 +93088,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79568] = 3, + sym_type_conversion, + [78964] = 8, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + STATE(1438), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2397), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2395), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93697,8 +93135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79612] = 5, + [79018] = 5, ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, @@ -93716,13 +93153,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(706), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -93741,31 +93178,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79660] = 3, + [79066] = 5, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1616), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1621), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(1618), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93781,41 +93221,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79704] = 3, + [79114] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(665), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 30, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(663), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -93823,31 +93264,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79748] = 3, + [79162] = 5, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(1549), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1552), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 30, + ACTIONS(1547), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93863,32 +93307,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79792] = 3, + [79210] = 8, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + STATE(1438), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2443), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2441), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93904,18 +93353,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79836] = 3, + [79264] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2479), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(2477), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93946,40 +93394,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79880] = 3, + [79308] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(665), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(663), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -93987,18 +93437,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79924] = 3, + [79356] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 30, - sym_string_start, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94006,7 +93458,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, @@ -94028,60 +93479,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79968] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1655), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1652), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1648), 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, - [80016] = 3, + [79402] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 30, + ACTIONS(277), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94112,29 +93520,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80060] = 3, + [79446] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(1552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94153,32 +93562,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80104] = 6, - ACTIONS(1554), 1, + [79492] = 4, + ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(2554), 1, - anon_sym_LBRACK, - STATE(2033), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(279), 6, anon_sym_STAR, anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94197,34 +93604,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80154] = 8, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, + [79538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2443), 4, + ACTIONS(2447), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 25, + ACTIONS(2445), 30, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94243,34 +93645,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80208] = 8, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, + [79582] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2439), 4, + ACTIONS(1552), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2437), 25, + ACTIONS(1547), 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94289,32 +93687,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80262] = 6, - ACTIONS(1554), 1, + [79628] = 4, + ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(1561), 1, - anon_sym_LBRACK, - STATE(2018), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 26, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94333,29 +93729,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80312] = 3, + [79674] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 30, - sym_string_start, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_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, @@ -94374,24 +93771,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80356] = 3, + [79720] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(1616), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1621), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 30, + ACTIONS(1618), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94414,20 +93813,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80400] = 3, + [79766] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(2460), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 30, + ACTIONS(2458), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -94439,7 +93839,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, @@ -94455,38 +93854,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80444] = 8, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, + [79810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 4, + ACTIONS(1552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, + ACTIONS(1547), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_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, @@ -94502,46 +93894,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80498] = 11, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, + sym_type_conversion, + [79854] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2406), 2, + ACTIONS(2487), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2418), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2416), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2398), 20, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2485), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_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, @@ -94551,90 +93936,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80558] = 15, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, - ACTIONS(2420), 1, - anon_sym_PIPE, - ACTIONS(2422), 1, - anon_sym_AMP, - ACTIONS(2424), 1, - anon_sym_CARET, + [79898] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2406), 2, + ACTIONS(2511), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2418), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2432), 2, anon_sym_LT, anon_sym_GT, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2416), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2430), 15, + ACTIONS(2509), 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, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80626] = 8, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, + [79942] = 4, + ACTIONS(1650), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 4, + ACTIONS(1653), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, - anon_sym_COMMA, + ACTIONS(1648), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_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, @@ -94650,45 +94018,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80680] = 10, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, + sym_type_conversion, + [79988] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2406), 2, + ACTIONS(1646), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2416), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2398), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 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, @@ -94698,316 +94060,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80738] = 14, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, - ACTIONS(2422), 1, - anon_sym_AMP, - ACTIONS(2424), 1, - anon_sym_CARET, + [80032] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2406), 2, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2418), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2416), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2398), 16, + anon_sym_LT, + anon_sym_GT, + ACTIONS(277), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_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, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80804] = 13, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, - ACTIONS(2424), 1, - anon_sym_CARET, + [80076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2406), 2, + ACTIONS(2521), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2418), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2416), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2398), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2519), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_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, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80868] = 12, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, + [80120] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2406), 2, + ACTIONS(2530), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2418), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2416), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2398), 18, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2528), 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, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80930] = 5, + [80164] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(277), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80978] = 5, + [80208] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2534), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2532), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81026] = 5, + [80252] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(2479), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 14, + ACTIONS(2477), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1648), 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, - [81074] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [80296] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, + ACTIONS(2471), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 27, + ACTIONS(2469), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95023,31 +94347,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81122] = 5, + [80340] = 6, ACTIONS(1554), 1, anon_sym_COLON_EQ, + ACTIONS(2554), 1, + anon_sym_LBRACK, + STATE(2031), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1655), 5, - anon_sym_as, + ACTIONS(1552), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 27, + ACTIONS(1547), 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_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95066,17 +94391,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81170] = 3, + [80390] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(1664), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(1662), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95107,26 +94432,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81214] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [80434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1552), 5, + ACTIONS(2467), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(2465), 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, @@ -95135,6 +94457,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, @@ -95150,24 +94473,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81262] = 3, + [80478] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + ACTIONS(1676), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 30, - sym_string_start, + ACTIONS(1674), 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, @@ -95191,26 +94514,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81306] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(279), 5, + [80522] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2483), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(2481), 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, @@ -95219,6 +94539,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, @@ -95234,26 +94555,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81354] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [80566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(279), 5, + ACTIONS(2552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(2550), 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, @@ -95262,6 +94580,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, @@ -95277,33 +94596,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81402] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [80610] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1631), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1626), 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, @@ -95319,33 +94636,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81448] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [80654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2548), 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(2546), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95361,33 +94678,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81494] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [80698] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(1653), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 28, + ACTIONS(1648), 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, @@ -95403,30 +94718,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81540] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [80742] = 8, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + STATE(1438), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2405), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2403), 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, @@ -95445,38 +94765,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81586] = 3, + [80796] = 11, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 30, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2411), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2423), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1438), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2403), 20, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_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_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, @@ -95486,30 +94814,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81630] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [80856] = 15, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2425), 1, + anon_sym_PIPE, + ACTIONS(2427), 1, + anon_sym_AMP, + ACTIONS(2429), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, + ACTIONS(2401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2411), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2413), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2423), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1438), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 15, + anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [80924] = 8, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1438), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2405), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2403), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -95529,34 +94913,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81678] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [80978] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, + ACTIONS(2540), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 27, + ACTIONS(2538), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95572,40 +94954,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81726] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [81022] = 10, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1655), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2411), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1438), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2403), 22, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_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, @@ -95615,113 +95002,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81774] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [81080] = 14, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, + anon_sym_AMP, + ACTIONS(2429), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2411), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2413), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2423), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1438), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2403), 16, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [81146] = 13, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, anon_sym_STAR_STAR, + ACTIONS(2419), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2429), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2405), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2411), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2413), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2423), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1438), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2403), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, 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, - [81820] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [81210] = 12, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2411), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2413), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2423), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1438), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2403), 18, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_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_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, - [81866] = 3, + [81272] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(2460), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 30, + ACTIONS(2458), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95740,20 +95196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81910] = 3, + [81316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(2503), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 30, + ACTIONS(2501), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -95766,6 +95221,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, @@ -95781,113 +95237,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81954] = 3, + [81360] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, + ACTIONS(665), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 30, - sym_string_start, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(663), 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, - [81998] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [81408] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(706), 14, 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(663), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82046] = 3, + [81456] = 6, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, + ACTIONS(1561), 1, + anon_sym_LBRACK, + STATE(2105), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, - anon_sym_as, + ACTIONS(1552), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 30, + ACTIONS(1547), 26, 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, @@ -95906,72 +95367,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82090] = 3, + [81506] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(1621), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1624), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1618), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1616), 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, - [82133] = 4, + [81554] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1655), 5, + ACTIONS(2517), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 27, + ACTIONS(2515), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95987,23 +95451,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82178] = 3, + [81598] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, + ACTIONS(2544), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 29, + ACTIONS(2542), 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, @@ -96012,6 +95476,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, @@ -96027,31 +95492,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82221] = 3, + [81642] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(2507), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + ACTIONS(2505), 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, @@ -96067,25 +95533,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82264] = 3, + [81686] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(284), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 29, + ACTIONS(277), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96107,75 +95576,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82307] = 7, - ACTIONS(1660), 1, - anon_sym_EQ, + [81734] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(284), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1650), 5, + ACTIONS(277), 27, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1648), 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(1652), 12, 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, - [82358] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [81782] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(2499), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(2497), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96191,31 +95660,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82401] = 3, + [81826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(2491), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(2489), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96231,31 +95701,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82444] = 3, + [81870] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(1631), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(1626), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96271,31 +95742,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82487] = 3, + [81914] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(2495), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + 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_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, @@ -96311,17 +95783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82530] = 3, + [81958] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(2460), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 29, + ACTIONS(2458), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96351,31 +95824,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82573] = 3, + [82002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(1653), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(1648), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96391,25 +95865,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82616] = 3, + [82046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(2460), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2458), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96431,25 +95906,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82659] = 3, + [82090] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2552), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96471,17 +95946,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82702] = 3, + [82133] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(2517), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2515), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96511,38 +95986,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82745] = 5, + [82176] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(2479), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 14, + ACTIONS(2477), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1648), 15, - anon_sym_COMMA, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [82219] = 7, + ACTIONS(1639), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1624), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1637), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1616), 12, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_not, anon_sym_and, @@ -96553,113 +96057,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82792] = 5, + ACTIONS(1618), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [82270] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2548), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 15, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [82313] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1653), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1648), 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, - [82839] = 5, + [82356] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2471), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(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(663), 15, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [82399] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1631), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 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, - [82886] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [82442] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1646), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1641), 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, @@ -96678,29 +96270,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82931] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [82485] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2540), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96719,29 +96310,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82976] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [82528] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(2544), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 28, + ACTIONS(2542), 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, @@ -96760,28 +96350,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83021] = 3, + [82571] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1616), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1621), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1618), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96800,25 +96391,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83064] = 3, + [82616] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2534), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2532), 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, @@ -96840,25 +96431,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83107] = 3, + [82659] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, - anon_sym_as, + ACTIONS(1646), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 29, + ACTIONS(1641), 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, @@ -96880,25 +96471,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83150] = 3, + [82702] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2483), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96920,17 +96511,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83193] = 3, + [82745] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2503), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2501), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96960,25 +96551,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83236] = 3, + [82788] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2530), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2528), 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, @@ -97000,17 +96591,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83279] = 3, + [82831] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(2517), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(2515), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97040,25 +96631,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83322] = 3, + [82874] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2521), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2519), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97080,28 +96671,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83365] = 3, + [82917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(1676), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(1674), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_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, @@ -97120,25 +96711,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83408] = 3, + [82960] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(2491), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(2489), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97160,17 +96751,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83451] = 3, + [83003] = 5, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, + ACTIONS(2536), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(1552), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(1547), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97178,7 +96772,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, @@ -97200,17 +96793,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83494] = 3, + [83050] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(741), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(279), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97218,7 +96814,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, @@ -97240,25 +96835,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83537] = 3, + [83097] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(741), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, - anon_sym_as, + ACTIONS(279), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97280,25 +96877,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83580] = 3, + [83144] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2507), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 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_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97320,17 +96917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83623] = 3, + [83187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2499), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(2497), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97360,17 +96957,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83666] = 3, + [83230] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(2495), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 29, + ACTIONS(2493), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97400,25 +96997,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83709] = 3, + [83273] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(1621), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1624), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 29, + ACTIONS(1618), 14, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1616), 15, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [83320] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2475), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2473), 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, @@ -97440,28 +97079,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83752] = 3, + [83363] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(1664), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(1662), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97480,28 +97119,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83795] = 3, + [83406] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2511), 5, + anon_sym_as, 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, 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, + [83449] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1668), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1666), 29, + anon_sym_DOT, + anon_sym_LPAREN, + 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97520,20 +97199,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83838] = 3, + [83492] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(1607), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(1605), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -97542,6 +97220,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, @@ -97560,28 +97239,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83881] = 3, + [83535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(1607), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(1605), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [83578] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1672), 5, anon_sym_as, + 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_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97600,17 +97319,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83924] = 3, + [83621] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97640,25 +97359,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83967] = 3, + [83664] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 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, @@ -97680,25 +97399,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84010] = 3, + [83707] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97720,25 +97439,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84053] = 3, + [83750] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2475), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 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, @@ -97760,28 +97479,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84096] = 3, + [83793] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(2487), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 29, + ACTIONS(2485), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_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, @@ -97800,28 +97519,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84139] = 3, + [83836] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(2511), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 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_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, @@ -97840,28 +97559,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84182] = 3, + [83879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(1672), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 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_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, @@ -97880,57 +97599,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84225] = 3, + [83922] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(1648), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1653), 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(1657), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [83967] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(665), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(706), 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(663), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84268] = 3, + [84014] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(1631), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(1626), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97960,177 +97722,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84311] = 3, + [84057] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(1621), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1624), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(1618), 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(1616), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84354] = 3, + [84104] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(1626), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1631), 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(1633), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [84149] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(665), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(706), 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(663), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84397] = 3, + [84196] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(1621), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1624), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(1618), 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(1616), 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, - [84440] = 3, + [84243] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(1547), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1552), 13, anon_sym_STAR, - anon_sym_EQ, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2527), 29, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1563), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [84288] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1641), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(1646), 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, - [84483] = 3, + ACTIONS(1563), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [84333] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(1646), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 29, + ACTIONS(1641), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98160,17 +98011,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84526] = 3, + [84376] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(1607), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(1605), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98200,25 +98051,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84569] = 3, + [84419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(1607), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(1605), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98240,25 +98091,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84612] = 3, + [84462] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(1668), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(1666), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98280,17 +98131,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84655] = 3, + [84505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2521), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2519), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98320,28 +98171,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84698] = 3, + [84548] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2530), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2528), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98360,17 +98211,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84741] = 3, + [84591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(2491), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(2489), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98400,17 +98251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84784] = 3, + [84634] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2534), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2532), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98440,24 +98291,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84827] = 3, + [84677] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, - anon_sym_as, + ACTIONS(2460), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(2458), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98480,19 +98331,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84870] = 3, + [84720] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2495), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(2493), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -98501,7 +98353,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, @@ -98520,148 +98371,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84913] = 3, + [84763] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, - anon_sym_as, + ACTIONS(1621), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1624), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(1618), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1616), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84956] = 3, + [84810] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, - anon_sym_as, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 29, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(663), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84999] = 3, + [84857] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, - anon_sym_as, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 29, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(663), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85042] = 3, + [84904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, - anon_sym_as, + ACTIONS(2544), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2542), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98680,28 +98537,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85085] = 3, + [84947] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, - anon_sym_as, + ACTIONS(2548), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98720,28 +98577,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85128] = 3, + [84990] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, - anon_sym_as, + ACTIONS(2552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98760,17 +98617,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85171] = 3, + [85033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(2483), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(2481), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98800,25 +98657,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85214] = 3, + [85076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2487), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2485), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_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, @@ -98840,24 +98697,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85257] = 3, + [85119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, - anon_sym_as, + ACTIONS(2447), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(2445), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98880,28 +98737,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85300] = 3, + [85162] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, - anon_sym_as, + 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(316), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [85207] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2467), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(2465), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98920,25 +98818,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85343] = 3, + [85250] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(2471), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 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, @@ -98960,28 +98858,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85386] = 3, + [85293] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, - anon_sym_as, + ACTIONS(1664), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(1662), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99000,28 +98898,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85429] = 3, + [85336] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, - anon_sym_as, + ACTIONS(1672), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 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_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, @@ -99040,28 +98938,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85472] = 3, + [85379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, - anon_sym_as, + ACTIONS(1672), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 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_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, @@ -99080,17 +98978,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85515] = 3, + [85422] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2471), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2469), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99120,17 +99018,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85558] = 3, + [85465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2467), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2465), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99160,28 +99058,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85601] = 3, + [85508] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, - anon_sym_as, + ACTIONS(2534), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(2532), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99200,25 +99098,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85644] = 3, + [85551] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, - anon_sym_as, + ACTIONS(1607), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(1605), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99240,49 +99138,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85687] = 5, + [85594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2530), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(670), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2528), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_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, - [85734] = 3, + [85637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -99322,17 +99218,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85777] = 3, + [85680] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1607), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(1605), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99362,17 +99258,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85820] = 3, + [85723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, + ACTIONS(1552), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 29, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99402,17 +99298,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85863] = 3, + [85766] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(1668), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(1666), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99442,25 +99338,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85906] = 3, + [85809] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(1653), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(1648), 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, @@ -99482,28 +99378,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85949] = 3, + [85852] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + 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(316), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [85897] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2483), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 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_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, @@ -99522,17 +99459,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85992] = 3, + [85940] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(1664), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(1662), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99562,24 +99499,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86035] = 3, + [85983] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 4, + ACTIONS(2552), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 30, - sym_string_start, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99602,154 +99539,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86078] = 5, + [86026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2548), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 15, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86125] = 5, + [86069] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2544), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2542), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 15, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86172] = 5, + [86112] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(2499), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 14, + ACTIONS(2497), 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(1648), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86219] = 3, + [86155] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 4, + ACTIONS(2507), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 30, - sym_string_start, + 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_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, @@ -99768,190 +99699,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86262] = 4, + [86198] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1614), 13, + ACTIONS(2511), 5, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1563), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [86307] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1547), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1552), 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(1563), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [86352] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1623), 3, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2509), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1628), 13, - anon_sym_STAR, + 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_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(1630), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [86397] = 5, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [86241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2487), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(670), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2485), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86444] = 3, + [86284] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(2517), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(2515), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99973,142 +99819,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86487] = 5, + [86327] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(2503), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 14, + ACTIONS(2501), 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(1648), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86534] = 4, + [86370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 3, + ACTIONS(2491), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2489), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1642), 13, - anon_sym_STAR, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1646), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [86579] = 5, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [86413] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(2540), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 14, + ACTIONS(2538), 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(1648), 15, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86626] = 3, + [86456] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, + ACTIONS(2475), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 29, + ACTIONS(2473), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100138,17 +99979,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86669] = 3, + [86499] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1676), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1674), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100178,28 +100019,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86712] = 3, + [86542] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1631), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1626), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_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, @@ -100218,28 +100059,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86755] = 3, + [86585] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(1653), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(1648), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100258,7 +100099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86798] = 3, + [86628] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -100271,12 +100112,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1674), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100298,19 +100139,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86841] = 3, + [86671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(2479), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2477), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -100319,7 +100161,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, @@ -100338,19 +100179,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86884] = 3, + [86714] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -100359,7 +100201,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, @@ -100378,17 +100219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86927] = 3, + [86757] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100418,61 +100259,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86970] = 4, + [86800] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(319), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [87015] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1611), 2, + ACTIONS(1650), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1614), 5, + ACTIONS(1653), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 27, + ACTIONS(1648), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -100500,22 +100300,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87060] = 4, + [86845] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1552), 5, + ACTIONS(2495), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(2493), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100523,6 +100321,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, @@ -100541,63 +100340,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87105] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(277), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(319), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [87150] = 4, + [86888] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1628), 5, + ACTIONS(2499), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 27, + ACTIONS(2497), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100605,6 +100361,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, @@ -100623,17 +100380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87195] = 3, + [86931] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(2507), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(2505), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100663,25 +100420,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87238] = 3, + [86974] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(1616), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1621), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(1618), 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_LBRACK, @@ -100703,7 +100461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87281] = 5, + [87019] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -100745,7 +100503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87328] = 5, + [87066] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -100787,26 +100545,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87375] = 4, + [87113] = 7, + ACTIONS(1639), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 2, + ACTIONS(1621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1624), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1637), 5, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1616), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1618), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [87164] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1628), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1631), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(1655), 5, + 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, + [87209] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1653), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1648), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87252] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1631), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 27, + ACTIONS(1626), 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, @@ -100828,22 +100710,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87420] = 4, + [87295] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1611), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1614), 5, + ACTIONS(2517), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 27, + ACTIONS(2515), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100851,6 +100731,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, @@ -100869,28 +100750,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87465] = 3, + [87338] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2503), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2501), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100909,25 +100790,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87508] = 3, + [87381] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(1549), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1552), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(1547), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100949,20 +100831,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87551] = 4, + [87426] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 2, + ACTIONS(1643), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1552), 5, + ACTIONS(1646), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(1641), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -100990,22 +100872,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87596] = 4, + [87471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1642), 5, + ACTIONS(2540), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 27, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -101013,6 +100893,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, @@ -101031,25 +100912,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87641] = 3, + [87514] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101071,17 +100952,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87684] = 3, + [87557] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101111,27 +100992,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87727] = 4, + [87600] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1628), 5, - anon_sym_as, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 27, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(663), 15, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87647] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(277), 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, @@ -101152,26 +101074,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87772] = 3, + [87690] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(663), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87737] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2487), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2485), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -101192,25 +101156,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87815] = 3, + [87780] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2511), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101232,28 +101196,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87858] = 3, + [87823] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, + ACTIONS(279), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101272,25 +101237,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87901] = 3, + [87868] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, - anon_sym_as, + ACTIONS(2521), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2519), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101312,25 +101277,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87944] = 3, + [87911] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, - anon_sym_as, + ACTIONS(2530), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(2528), 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, @@ -101352,25 +101317,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87987] = 3, + [87954] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, - anon_sym_as, + ACTIONS(2534), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2532), 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, @@ -101392,25 +101357,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88030] = 3, + [87997] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, - anon_sym_as, + ACTIONS(2471), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(2469), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101432,69 +101397,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88073] = 7, - ACTIONS(1660), 1, - anon_sym_EQ, + [88040] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(279), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(1658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1650), 5, - sym__newline, - anon_sym_SEMI, + ACTIONS(277), 28, anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1648), 12, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1652), 12, + [88085] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2467), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2465), 29, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_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, - [88124] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [88128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, - anon_sym_as, + ACTIONS(2483), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 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_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101516,25 +101518,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88167] = 3, + [88171] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, - anon_sym_as, + ACTIONS(2552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101556,28 +101558,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88210] = 3, + [88214] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, - anon_sym_as, + ACTIONS(1552), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(1547), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101596,28 +101599,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88253] = 3, + [88259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, - anon_sym_as, + ACTIONS(2548), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 29, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101636,25 +101639,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88296] = 3, + [88302] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, - anon_sym_as, + ACTIONS(279), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_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, @@ -101676,20 +101679,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88339] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(763), 1, - anon_sym_EQ, + [88345] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(279), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101697,6 +101697,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, @@ -101718,30 +101719,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88386] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(763), 1, - anon_sym_EQ, + [88388] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(2479), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 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, @@ -101760,30 +101759,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88433] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(2542), 1, - anon_sym_EQ, + [88431] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 4, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 28, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101802,17 +101799,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88480] = 3, + [88474] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101842,25 +101839,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88523] = 3, + [88517] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(1650), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1653), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(1648), 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, @@ -101882,22 +101880,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88566] = 4, + [88562] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1642), 5, + ACTIONS(1552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 27, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -101905,6 +101901,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, @@ -101923,28 +101920,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88611] = 3, + [88605] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2479), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2477), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_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, @@ -101963,28 +101960,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88654] = 3, + [88648] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2544), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2542), 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, @@ -102003,28 +102000,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88697] = 3, + [88691] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, - anon_sym_as, + ACTIONS(2540), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102043,28 +102040,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88740] = 3, + [88734] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, - anon_sym_as, + ACTIONS(2491), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(2489), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_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, @@ -102083,21 +102080,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88783] = 3, + [88777] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(1643), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1646), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(1641), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -102123,25 +102121,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88826] = 3, + [88822] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_as, + ACTIONS(2503), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102163,21 +102161,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88869] = 3, + [88865] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(1549), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(1547), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -102203,17 +102202,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88912] = 3, + [88910] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2467), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(2465), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102243,25 +102242,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88955] = 3, + [88953] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, - anon_sym_as, + ACTIONS(1646), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 29, + ACTIONS(1641), 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, @@ -102283,25 +102282,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88998] = 3, + [88996] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, - anon_sym_as, + ACTIONS(2475), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 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, @@ -102323,21 +102322,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89041] = 3, + [89039] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(1628), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1631), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(1626), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -102367,21 +102367,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, - anon_sym_as, + ACTIONS(2507), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 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, @@ -102407,13 +102407,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(2495), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 29, + ACTIONS(2493), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102447,13 +102447,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(2499), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(2497), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102483,28 +102483,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89213] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89213] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(2552), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102523,27 +102522,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89257] = 7, - ACTIONS(1660), 1, - anon_sym_EQ, + [89255] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(1621), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1650), 4, + ACTIONS(1618), 14, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(1648), 12, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1616), 15, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102553,36 +102563,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1652), 12, + [89301] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1631), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 29, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_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, - [89307] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [89343] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 4, + ACTIONS(1621), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(1618), 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, @@ -102605,23 +102642,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89349] = 3, + [89387] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 4, + ACTIONS(665), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(706), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102644,72 +102682,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89391] = 6, + [89431] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(665), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1650), 5, + ACTIONS(706), 28, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(1648), 12, anon_sym_as, + anon_sym_GT_GT, 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(1652), 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, - [89439] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [89475] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 4, + ACTIONS(1621), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(1618), 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, @@ -102725,69 +102762,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89481] = 3, + [89519] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 4, + ACTIONS(1621), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 29, + ACTIONS(1637), 5, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(1616), 12, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1618), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [89523] = 3, + [89567] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 4, + ACTIONS(665), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(706), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -102803,30 +102844,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89565] = 3, + [89611] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 4, + ACTIONS(665), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(706), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -102842,16 +102884,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89607] = 3, + [89655] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 4, + ACTIONS(2495), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(2493), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102881,16 +102923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89649] = 3, + [89697] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 4, + ACTIONS(2499), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(2497), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102920,28 +102962,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89691] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89739] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(2483), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102960,16 +103001,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89735] = 3, + [89781] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 4, + ACTIONS(2507), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2505), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102999,16 +103040,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89777] = 3, + [89823] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 4, + ACTIONS(2517), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2515), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103038,31 +103079,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89819] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89865] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(2503), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + ACTIONS(2501), 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, @@ -103078,31 +103118,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89863] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89907] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(2475), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + ACTIONS(2473), 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, @@ -103118,64 +103157,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89907] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [89949] = 7, + ACTIONS(1639), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 4, + ACTIONS(1621), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 28, + ACTIONS(1637), 4, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1616), 12, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1618), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_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, - [89951] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [89999] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 4, + ACTIONS(2491), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 28, + 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, @@ -103198,16 +103239,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89995] = 3, + [90041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 4, + ACTIONS(2540), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 29, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103237,24 +103278,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90037] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [90083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(2544), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + ACTIONS(2542), 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, @@ -103277,16 +103317,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90081] = 3, + [90125] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 4, + ACTIONS(2548), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103316,16 +103356,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90123] = 3, + [90167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(1653), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1648), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103355,16 +103395,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90165] = 3, + [90209] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(2534), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2532), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103394,16 +103434,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90207] = 3, + [90251] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 4, + ACTIONS(1607), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(1605), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103433,16 +103473,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90249] = 3, + [90293] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 4, + ACTIONS(2471), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2469), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103472,16 +103512,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90291] = 3, + [90335] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 4, + ACTIONS(1672), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 29, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103511,57 +103551,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90333] = 5, + [90377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(1672), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 14, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1648), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90379] = 3, + [90419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 4, + ACTIONS(1646), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + ACTIONS(1641), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103591,16 +103629,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90421] = 3, + [90461] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 4, + ACTIONS(1552), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103630,16 +103668,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90463] = 3, + [90503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 4, + ACTIONS(1607), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(1605), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103669,7 +103707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90505] = 3, + [90545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -103708,16 +103746,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90547] = 3, + [90587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 4, + ACTIONS(1668), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(1666), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103747,16 +103785,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90589] = 3, + [90629] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 4, + ACTIONS(1664), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 29, + ACTIONS(1662), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103786,7 +103824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90631] = 3, + [90671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -103825,16 +103863,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90673] = 3, + [90713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 4, + ACTIONS(279), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103864,16 +103902,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90715] = 3, + [90755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 4, + ACTIONS(1676), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(1674), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103903,7 +103941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90757] = 5, + [90797] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -103944,16 +103982,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90803] = 3, + [90843] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 4, + ACTIONS(2487), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(2485), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103983,55 +104021,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90845] = 3, + [90885] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 4, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(670), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(663), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90887] = 3, + [90931] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 4, + ACTIONS(2511), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(2509), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104061,57 +104101,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90929] = 5, + [90973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2521), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2519), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90975] = 3, + [91015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 4, + ACTIONS(279), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104141,16 +104179,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91017] = 3, + [91057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 4, + ACTIONS(2530), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(2528), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104180,27 +104218,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91059] = 3, + [91099] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 4, + ACTIONS(665), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(706), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_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, @@ -104219,27 +104258,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91101] = 3, + [91143] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 4, + ACTIONS(665), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(706), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104258,20 +104298,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91143] = 4, - ACTIONS(292), 1, + [91187] = 4, + ACTIONS(1554), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(1621), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + ACTIONS(1618), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -104279,7 +104320,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, @@ -104298,55 +104338,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91187] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [91231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 4, + ACTIONS(1672), 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(1652), 28, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1670), 19, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + 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, + [91272] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1641), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1646), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1563), 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, + [91315] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1547), 3, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACK, + ACTIONS(1552), 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_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, - [91231] = 4, + ACTIONS(1563), 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, + [91358] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 3, + ACTIONS(1626), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1642), 13, + ACTIONS(1631), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104360,7 +104476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1646), 16, + ACTIONS(1633), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104377,11 +104493,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91274] = 3, + [91401] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 13, + 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, @@ -104395,13 +104515,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1605), 19, + ACTIONS(316), 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, + [91444] = 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(316), 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, + [91487] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1648), 3, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACK, + ACTIONS(1653), 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(1657), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104415,11 +104610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91315] = 3, + [91530] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 13, + ACTIONS(1676), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104433,7 +104628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1670), 19, + ACTIONS(1674), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104453,7 +104648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91356] = 3, + [91571] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -104491,11 +104686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91397] = 3, + [91612] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 13, + ACTIONS(1668), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104509,7 +104704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1674), 19, + ACTIONS(1666), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104529,11 +104724,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91438] = 3, + [91653] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 13, + ACTIONS(1607), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104547,7 +104742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1674), 19, + ACTIONS(1605), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104567,11 +104762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91479] = 3, + [91694] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 13, + ACTIONS(1607), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104585,7 +104780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1666), 19, + ACTIONS(1605), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104605,11 +104800,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91520] = 3, + [91735] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 13, + ACTIONS(1672), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104623,7 +104818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1666), 19, + ACTIONS(1670), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104643,7 +104838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91561] = 4, + [91776] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -104682,7 +104877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91604] = 4, + [91819] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -104721,15 +104916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91647] = 4, + [91862] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 3, + ACTIONS(1618), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1655), 13, + ACTIONS(1621), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104743,7 +104938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1648), 16, + ACTIONS(1616), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104760,16 +104955,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91690] = 3, + [91905] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 4, + ACTIONS(1621), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 28, + ACTIONS(1618), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104798,16 +104993,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91731] = 3, + [91946] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 4, + ACTIONS(1621), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 28, + ACTIONS(1618), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104836,16 +105031,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91772] = 3, + [91987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 4, + ACTIONS(1621), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 28, + ACTIONS(1618), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104874,203 +105069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91813] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1623), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1628), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1630), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_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, - [91856] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1614), 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(1563), 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, - [91899] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1547), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1552), 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(1563), 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, - [91942] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(277), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(319), 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, - [91985] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(277), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(319), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, [92028] = 20, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2556), 1, sym_identifier, @@ -105094,18 +105094,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2578), 1, sym_float, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2238), 1, + STATE(2152), 1, sym_case_pattern, - STATE(2745), 1, + STATE(2704), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2202), 2, + STATE(2146), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2572), 4, @@ -105113,7 +105113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1913), 9, + STATE(1971), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105124,7 +105124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92102] = 20, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2556), 1, sym_identifier, @@ -105148,18 +105148,18 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(2580), 1, anon_sym_COLON, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2238), 1, + STATE(2152), 1, sym_case_pattern, - STATE(2699), 1, + STATE(2607), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2202), 2, + STATE(2146), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2572), 4, @@ -105167,7 +105167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1913), 9, + STATE(1971), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105178,20 +105178,20 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92176] = 18, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, ACTIONS(2586), 1, - anon_sym_STAR, + anon_sym_RPAREN, ACTIONS(2588), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2590), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2592), 1, - anon_sym_RBRACK, + anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, ACTIONS(2598), 1, @@ -105200,16 +105200,16 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2602), 1, sym_float, - STATE(1858), 1, + STATE(1877), 1, sym_string, - STATE(2080), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -105217,7 +105217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105228,17 +105228,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92244] = 18, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, - anon_sym_STAR, ACTIONS(2588), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2590), 1, + anon_sym_STAR_STAR, + ACTIONS(2592), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -105249,17 +105249,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2604), 1, - anon_sym_RBRACK, - STATE(1858), 1, + anon_sym_RPAREN, + STATE(1877), 1, sym_string, - STATE(2080), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2195), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -105267,7 +105267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105278,46 +105278,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92312] = 18, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, - anon_sym_RPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, - STATE(1842), 1, + ACTIONS(2606), 1, + anon_sym_RPAREN, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105328,11 +105328,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92380] = 18, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(2606), 1, - sym_identifier, ACTIONS(2608), 1, + sym_identifier, + ACTIONS(2610), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -105341,33 +105341,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2616), 1, anon_sym_LBRACK, ACTIONS(2618), 1, + anon_sym_RBRACK, + ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2622), 1, - anon_sym_LBRACE, ACTIONS(2624), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2626), 1, - sym_float, + sym_integer, ACTIONS(2628), 1, - anon_sym_RPAREN, - STATE(1842), 1, + sym_float, + STATE(1846), 1, sym_string, - STATE(2097), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2237), 1, + STATE(2198), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2245), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2622), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105378,46 +105378,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92448] = 18, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2630), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105428,17 +105428,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92516] = 18, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, - anon_sym_STAR, ACTIONS(2588), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2590), 1, + anon_sym_STAR_STAR, + ACTIONS(2592), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -105449,17 +105449,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2632), 1, - anon_sym_RBRACK, - STATE(1858), 1, + anon_sym_RPAREN, + STATE(1877), 1, sym_string, - STATE(2080), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2157), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -105467,7 +105467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105478,46 +105478,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92584] = 18, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2634), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105528,11 +105528,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92652] = 18, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(2606), 1, - sym_identifier, ACTIONS(2608), 1, + sym_identifier, + ACTIONS(2610), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -105540,34 +105540,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2622), 1, - anon_sym_LBRACE, ACTIONS(2624), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2626), 1, + sym_integer, + ACTIONS(2628), 1, sym_float, ACTIONS(2636), 1, - anon_sym_RPAREN, - STATE(1842), 1, + anon_sym_RBRACK, + STATE(1846), 1, sym_string, - STATE(2097), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2159), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2245), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2622), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105578,17 +105578,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92720] = 18, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, - anon_sym_STAR, ACTIONS(2588), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2590), 1, + anon_sym_STAR_STAR, + ACTIONS(2592), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -105599,17 +105599,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2638), 1, - anon_sym_RBRACK, - STATE(1858), 1, + anon_sym_RPAREN, + STATE(1877), 1, sym_string, - STATE(2080), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2160), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -105617,7 +105617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105628,46 +105628,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92788] = 18, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2640), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2200), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105678,46 +105678,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92856] = 18, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2642), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105728,46 +105728,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92924] = 18, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2608), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2610), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2624), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2626), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2628), 1, sym_float, ACTIONS(2644), 1, anon_sym_RBRACK, - STATE(1858), 1, + STATE(1846), 1, sym_string, - STATE(2080), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2287), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2245), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2622), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105778,11 +105778,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92992] = 18, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(2606), 1, - sym_identifier, ACTIONS(2608), 1, + sym_identifier, + ACTIONS(2610), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -105790,34 +105790,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2622), 1, - anon_sym_LBRACE, ACTIONS(2624), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2626), 1, + sym_integer, + ACTIONS(2628), 1, sym_float, ACTIONS(2646), 1, - anon_sym_RPAREN, - STATE(1842), 1, + anon_sym_RBRACK, + STATE(1846), 1, sym_string, - STATE(2097), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2183), 1, + STATE(2287), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2245), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2622), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105828,46 +105828,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93060] = 18, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2608), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2610), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2624), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2626), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2628), 1, sym_float, ACTIONS(2648), 1, anon_sym_RBRACK, - STATE(1858), 1, + STATE(1846), 1, sym_string, - STATE(2080), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2287), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2245), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2622), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105878,46 +105878,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93128] = 18, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2650), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2192), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105928,11 +105928,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93196] = 18, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(2606), 1, - sym_identifier, ACTIONS(2608), 1, + sym_identifier, + ACTIONS(2610), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -105940,34 +105940,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2622), 1, - anon_sym_LBRACE, ACTIONS(2624), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2626), 1, + sym_integer, + ACTIONS(2628), 1, sym_float, ACTIONS(2652), 1, - anon_sym_RPAREN, - STATE(1842), 1, + anon_sym_RBRACK, + STATE(1846), 1, sym_string, - STATE(2097), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2287), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2245), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2622), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105978,46 +105978,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93264] = 18, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2654), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2191), 1, + STATE(2182), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106028,46 +106028,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93332] = 18, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2656), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106078,17 +106078,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93400] = 18, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, - anon_sym_STAR, ACTIONS(2588), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2590), 1, + anon_sym_STAR_STAR, + ACTIONS(2592), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -106099,17 +106099,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2658), 1, - anon_sym_RBRACK, - STATE(1858), 1, + anon_sym_RPAREN, + STATE(1877), 1, sym_string, - STATE(2080), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -106117,7 +106117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106128,46 +106128,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93468] = 18, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2660), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106178,46 +106178,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93536] = 18, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2662), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2176), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106228,46 +106228,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93604] = 18, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2664), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2146), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106278,11 +106278,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93672] = 18, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(2606), 1, - sym_identifier, ACTIONS(2608), 1, + sym_identifier, + ACTIONS(2610), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -106290,34 +106290,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2622), 1, - anon_sym_LBRACE, ACTIONS(2624), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2626), 1, + sym_integer, + ACTIONS(2628), 1, sym_float, ACTIONS(2666), 1, - anon_sym_RPAREN, - STATE(1842), 1, + anon_sym_RBRACK, + STATE(1846), 1, sym_string, - STATE(2097), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2118), 1, + STATE(2177), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2245), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2622), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106328,46 +106328,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93740] = 18, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2608), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2610), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2624), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2626), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2628), 1, sym_float, ACTIONS(2668), 1, anon_sym_RBRACK, - STATE(1858), 1, + STATE(1846), 1, sym_string, - STATE(2080), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2119), 1, + STATE(2287), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2245), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2622), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106378,11 +106378,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93808] = 18, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(2606), 1, - sym_identifier, ACTIONS(2608), 1, + sym_identifier, + ACTIONS(2610), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -106390,34 +106390,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2622), 1, - anon_sym_LBRACE, ACTIONS(2624), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2626), 1, + sym_integer, + ACTIONS(2628), 1, sym_float, ACTIONS(2670), 1, - anon_sym_RPAREN, - STATE(1842), 1, + anon_sym_RBRACK, + STATE(1846), 1, sym_string, - STATE(2097), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2123), 1, + STATE(2287), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2245), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2622), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106428,46 +106428,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93876] = 18, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2672), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106478,17 +106478,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93944] = 18, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, - anon_sym_STAR, ACTIONS(2588), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2590), 1, + anon_sym_STAR_STAR, + ACTIONS(2592), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -106499,17 +106499,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2674), 1, - anon_sym_RBRACK, - STATE(1858), 1, + anon_sym_RPAREN, + STATE(1877), 1, sym_string, - STATE(2080), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2201), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -106517,7 +106517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106528,11 +106528,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94012] = 18, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(2606), 1, - sym_identifier, ACTIONS(2608), 1, + sym_identifier, + ACTIONS(2610), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -106540,34 +106540,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2622), 1, - anon_sym_LBRACE, ACTIONS(2624), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2626), 1, + sym_integer, + ACTIONS(2628), 1, sym_float, ACTIONS(2676), 1, - anon_sym_RPAREN, - STATE(1842), 1, + anon_sym_RBRACK, + STATE(1846), 1, sym_string, - STATE(2097), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2287), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2245), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2622), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106578,11 +106578,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94080] = 18, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(2606), 1, - sym_identifier, ACTIONS(2608), 1, + sym_identifier, + ACTIONS(2610), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -106590,34 +106590,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2622), 1, - anon_sym_LBRACE, ACTIONS(2624), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2626), 1, + sym_integer, + ACTIONS(2628), 1, sym_float, ACTIONS(2678), 1, - anon_sym_RPAREN, - STATE(1842), 1, + anon_sym_RBRACK, + STATE(1846), 1, sym_string, - STATE(2097), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2287), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2245), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2622), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106628,46 +106628,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94148] = 18, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2680), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106678,46 +106678,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94216] = 18, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2682), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106728,11 +106728,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94284] = 18, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(2606), 1, - sym_identifier, ACTIONS(2608), 1, + sym_identifier, + ACTIONS(2610), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -106740,34 +106740,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2622), 1, - anon_sym_LBRACE, ACTIONS(2624), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2626), 1, + sym_integer, + ACTIONS(2628), 1, sym_float, ACTIONS(2684), 1, - anon_sym_RPAREN, - STATE(1842), 1, + anon_sym_RBRACK, + STATE(1846), 1, sym_string, - STATE(2097), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2150), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2245), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2622), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106778,46 +106778,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94352] = 18, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2686), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2188), 1, + STATE(2148), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106828,17 +106828,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94420] = 18, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, - anon_sym_STAR, ACTIONS(2588), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2590), 1, + anon_sym_STAR_STAR, + ACTIONS(2592), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -106849,17 +106849,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2688), 1, - anon_sym_RBRACK, - STATE(1858), 1, + anon_sym_RPAREN, + STATE(1877), 1, sym_string, - STATE(2080), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2198), 1, + STATE(2151), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -106867,7 +106867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106878,17 +106878,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94488] = 18, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, - anon_sym_STAR, ACTIONS(2588), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2590), 1, + anon_sym_STAR_STAR, + ACTIONS(2592), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -106899,17 +106899,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2690), 1, - anon_sym_RBRACK, - STATE(1858), 1, + anon_sym_RPAREN, + STATE(1877), 1, sym_string, - STATE(2080), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -106917,7 +106917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106928,17 +106928,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94556] = 18, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, - anon_sym_STAR, ACTIONS(2588), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2590), 1, + anon_sym_STAR_STAR, + ACTIONS(2592), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -106949,17 +106949,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2692), 1, - anon_sym_RBRACK, - STATE(1858), 1, + anon_sym_RPAREN, + STATE(1877), 1, sym_string, - STATE(2080), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -106967,7 +106967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106978,44 +106978,44 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94624] = 17, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2592), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2602), 1, sym_float, - STATE(1842), 1, + STATE(1877), 1, sym_string, - STATE(2097), 1, + STATE(2098), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2305), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2324), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2106), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107026,44 +107026,44 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94689] = 17, - ACTIONS(819), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2694), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2696), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2698), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2700), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2702), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2704), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2708), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2710), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2712), 1, sym_float, - STATE(1858), 1, + STATE(1880), 1, sym_string, - STATE(2080), 1, + STATE(1995), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2412), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2321), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2706), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(1996), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107074,44 +107074,44 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94754] = 17, - ACTIONS(704), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(2694), 1, + ACTIONS(2608), 1, sym_identifier, - ACTIONS(2696), 1, + ACTIONS(2610), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2702), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2708), 1, + ACTIONS(2624), 1, anon_sym_LBRACE, - ACTIONS(2710), 1, + ACTIONS(2626), 1, sym_integer, - ACTIONS(2712), 1, + ACTIONS(2628), 1, sym_float, - STATE(1847), 1, + STATE(1846), 1, sym_string, - STATE(2067), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2396), 1, + STATE(2287), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2257), 2, + STATE(2245), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2706), 4, + ACTIONS(2622), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2068), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107122,7 +107122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94819] = 17, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2556), 1, sym_identifier, @@ -107142,16 +107142,16 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2578), 1, sym_float, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2238), 1, + STATE(2152), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2202), 2, + STATE(2146), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2572), 4, @@ -107159,7 +107159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1913), 9, + STATE(1971), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107170,7 +107170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94884] = 17, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2556), 1, sym_identifier, @@ -107190,16 +107190,16 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2578), 1, sym_float, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(1912), 1, + STATE(1973), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2202), 2, + STATE(2146), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2572), 4, @@ -107207,7 +107207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1913), 9, + STATE(1971), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107218,7 +107218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94949] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107240,13 +107240,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2718), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107256,7 +107256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107266,7 +107266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95015] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107288,13 +107288,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2720), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107304,7 +107304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107314,7 +107314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95081] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107336,13 +107336,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2722), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107352,7 +107352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107362,7 +107362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95147] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107384,13 +107384,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2724), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2035), 1, + STATE(2097), 1, sym_splat_pattern, - STATE(2467), 1, + STATE(2478), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107400,7 +107400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107410,7 +107410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95213] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107432,13 +107432,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2726), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2088), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2318), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107448,7 +107448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107458,7 +107458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95279] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107480,13 +107480,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2728), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107496,7 +107496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107506,7 +107506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95345] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107528,13 +107528,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2730), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107544,7 +107544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107554,7 +107554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95411] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107576,13 +107576,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2732), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2066), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2243), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107592,7 +107592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107602,7 +107602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95477] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107624,13 +107624,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2734), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2093), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2300), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107640,7 +107640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107650,7 +107650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95543] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107672,13 +107672,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2736), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2109), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2393), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107688,7 +107688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107698,7 +107698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95609] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107720,13 +107720,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2738), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107736,7 +107736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107746,7 +107746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95675] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107768,13 +107768,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2740), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2038), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2400), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107784,7 +107784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107794,7 +107794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95741] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107816,13 +107816,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2742), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107832,7 +107832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107842,7 +107842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95807] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107864,13 +107864,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2744), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107880,7 +107880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107890,7 +107890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95873] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107912,13 +107912,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2746), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107928,7 +107928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107938,7 +107938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95939] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107960,13 +107960,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2748), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107976,7 +107976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107986,7 +107986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96005] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -108008,13 +108008,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2750), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -108024,7 +108024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108034,7 +108034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96071] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -108056,13 +108056,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2752), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -108072,7 +108072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108082,7 +108082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96137] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -108104,13 +108104,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2754), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2062), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2459), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -108120,7 +108120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108130,7 +108130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96203] = 18, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -108152,13 +108152,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2756), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -108168,7 +108168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108178,7 +108178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96269] = 17, - ACTIONS(327), 1, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -108198,13 +108198,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2714), 1, sym_identifier, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2155), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2565), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -108214,7 +108214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2479), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108224,15 +108224,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96332] = 15, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, - anon_sym_STAR, ACTIONS(2588), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2590), 1, + anon_sym_STAR_STAR, + ACTIONS(2592), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -108244,9 +108244,9 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(2758), 1, sym_identifier, - STATE(1858), 1, + STATE(1877), 1, sym_string, - STATE(2080), 1, + STATE(2098), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, @@ -108256,7 +108256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2098), 9, + STATE(2083), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108267,15 +108267,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96390] = 15, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, - anon_sym_STAR, ACTIONS(2588), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2590), 1, + anon_sym_STAR_STAR, + ACTIONS(2592), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -108287,9 +108287,9 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(2758), 1, sym_identifier, - STATE(1858), 1, + STATE(1877), 1, sym_string, - STATE(2080), 1, + STATE(2098), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, @@ -108299,7 +108299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2102), 9, + STATE(2104), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108310,49 +108310,6 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96448] = 15, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(2558), 1, - anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_STAR, - ACTIONS(2566), 1, - anon_sym_STAR_STAR, - ACTIONS(2568), 1, - anon_sym_LBRACK, - ACTIONS(2570), 1, - anon_sym_DASH, - ACTIONS(2574), 1, - anon_sym_LBRACE, - ACTIONS(2576), 1, - sym_integer, - ACTIONS(2578), 1, - sym_float, - ACTIONS(2714), 1, - sym_identifier, - STATE(1818), 1, - sym_string, - STATE(1908), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2764), 4, - anon_sym__, - sym_true, - sym_false, - sym_none, - STATE(1893), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - [96506] = 15, ACTIONS(704), 1, sym_string_start, ACTIONS(2696), 1, @@ -108371,21 +108328,21 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2712), 1, sym_float, - ACTIONS(2766), 1, + ACTIONS(2764), 1, sym_identifier, - STATE(1847), 1, + STATE(1880), 1, sym_string, - STATE(2067), 1, + STATE(1995), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2768), 4, + ACTIONS(2766), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2073), 9, + STATE(2022), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108395,7 +108352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96564] = 15, + [96506] = 15, ACTIONS(704), 1, sym_string_start, ACTIONS(2696), 1, @@ -108414,21 +108371,21 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2712), 1, sym_float, - ACTIONS(2766), 1, + ACTIONS(2764), 1, sym_identifier, - STATE(1847), 1, + STATE(1880), 1, sym_string, - STATE(2067), 1, + STATE(1995), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2770), 4, + ACTIONS(2768), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2074), 9, + STATE(2026), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108438,32 +108395,32 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96622] = 9, - ACTIONS(2777), 1, - anon_sym_EQ, - ACTIONS(2779), 1, + [96564] = 9, + ACTIONS(2100), 1, anon_sym_not, - ACTIONS(2782), 1, + ACTIONS(2106), 1, anon_sym_is, + ACTIONS(2772), 1, + anon_sym_EQ, STATE(1554), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2785), 2, + ACTIONS(2108), 2, anon_sym_LT, anon_sym_GT, - STATE(901), 2, + STATE(948), 2, sym__not_in, sym__is_not, - ACTIONS(2774), 6, + ACTIONS(2086), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2772), 11, + ACTIONS(2770), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -108475,32 +108432,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [96668] = 9, - ACTIONS(2102), 1, + [96610] = 9, + ACTIONS(2779), 1, + anon_sym_EQ, + ACTIONS(2781), 1, anon_sym_not, - ACTIONS(2108), 1, + ACTIONS(2784), 1, anon_sym_is, - ACTIONS(2790), 1, - anon_sym_EQ, STATE(1554), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2110), 2, + ACTIONS(2787), 2, anon_sym_LT, anon_sym_GT, - STATE(901), 2, + STATE(948), 2, sym__not_in, sym__is_not, - ACTIONS(2088), 6, + ACTIONS(2776), 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(2788), 11, + ACTIONS(2774), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -108512,8 +108469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [96714] = 15, - ACTIONS(327), 1, + [96656] = 15, + ACTIONS(324), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -108533,19 +108490,19 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(2714), 1, sym_identifier, - STATE(1818), 1, + STATE(1830), 1, sym_string, - STATE(1908), 1, + STATE(1960), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2792), 4, + ACTIONS(2790), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1942), 9, + STATE(1933), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108555,10 +108512,10 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96772] = 15, - ACTIONS(729), 1, + [96714] = 15, + ACTIONS(797), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2610), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -108566,19 +108523,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2622), 1, - anon_sym_LBRACE, ACTIONS(2624), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2626), 1, + sym_integer, + ACTIONS(2628), 1, sym_float, - ACTIONS(2794), 1, + ACTIONS(2792), 1, sym_identifier, - STATE(1842), 1, + STATE(1846), 1, sym_string, - STATE(2097), 1, + STATE(2006), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2794), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2051), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [96772] = 15, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2558), 1, + anon_sym_LPAREN, + ACTIONS(2560), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_STAR_STAR, + ACTIONS(2568), 1, + anon_sym_LBRACK, + ACTIONS(2570), 1, + anon_sym_DASH, + ACTIONS(2574), 1, + anon_sym_LBRACE, + ACTIONS(2576), 1, + sym_integer, + ACTIONS(2578), 1, + sym_float, + ACTIONS(2714), 1, + sym_identifier, + STATE(1830), 1, + sym_string, + STATE(1960), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, @@ -108588,7 +108588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2022), 9, + STATE(1920), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108599,9 +108599,9 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96830] = 15, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2610), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -108609,19 +108609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2622), 1, - anon_sym_LBRACE, ACTIONS(2624), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2626), 1, + sym_integer, + ACTIONS(2628), 1, sym_float, - ACTIONS(2794), 1, + ACTIONS(2792), 1, sym_identifier, - STATE(1842), 1, + STATE(1846), 1, sym_string, - STATE(2097), 1, + STATE(2006), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, @@ -108631,7 +108631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2004), 9, + STATE(2039), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108642,31 +108642,31 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96888] = 9, - ACTIONS(2102), 1, + ACTIONS(2100), 1, anon_sym_not, - ACTIONS(2356), 1, + ACTIONS(2292), 1, anon_sym_is, - ACTIONS(2790), 1, + ACTIONS(2772), 1, anon_sym_EQ, STATE(1562), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2358), 2, + ACTIONS(2294), 2, anon_sym_LT, anon_sym_GT, - STATE(898), 2, + STATE(877), 2, sym__not_in, sym__is_not, - ACTIONS(2340), 6, + ACTIONS(2276), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2788), 9, + ACTIONS(2770), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -108677,9 +108677,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, [96932] = 9, - ACTIONS(2777), 1, - anon_sym_EQ, ACTIONS(2779), 1, + anon_sym_EQ, + ACTIONS(2781), 1, anon_sym_not, ACTIONS(2803), 1, anon_sym_is, @@ -108691,7 +108691,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2806), 2, anon_sym_LT, anon_sym_GT, - STATE(928), 2, + STATE(955), 2, sym__not_in, sym__is_not, ACTIONS(2800), 6, @@ -108701,7 +108701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2772), 9, + ACTIONS(2774), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108712,31 +108712,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, [96976] = 9, - ACTIONS(2102), 1, + ACTIONS(2100), 1, anon_sym_not, - ACTIONS(2391), 1, + ACTIONS(2380), 1, anon_sym_is, - ACTIONS(2790), 1, + ACTIONS(2772), 1, anon_sym_EQ, STATE(1560), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2393), 2, + ACTIONS(2382), 2, anon_sym_LT, anon_sym_GT, - STATE(928), 2, + STATE(955), 2, sym__not_in, sym__is_not, - ACTIONS(2375), 6, + ACTIONS(2364), 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(2788), 9, + ACTIONS(2770), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108747,9 +108747,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, [97020] = 9, - ACTIONS(2777), 1, - anon_sym_EQ, ACTIONS(2779), 1, + anon_sym_EQ, + ACTIONS(2781), 1, anon_sym_not, ACTIONS(2812), 1, anon_sym_is, @@ -108761,7 +108761,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2815), 2, anon_sym_LT, anon_sym_GT, - STATE(898), 2, + STATE(877), 2, sym__not_in, sym__is_not, ACTIONS(2809), 6, @@ -108771,7 +108771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2772), 9, + ACTIONS(2774), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -108781,8 +108781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97064] = 8, + [97064] = 9, ACTIONS(2779), 1, + anon_sym_as, + ACTIONS(2781), 1, anon_sym_not, ACTIONS(2821), 1, anon_sym_is, @@ -108794,7 +108796,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2824), 2, anon_sym_LT, anon_sym_GT, - STATE(941), 2, + STATE(940), 2, sym__not_in, sym__is_not, ACTIONS(2818), 6, @@ -108804,20 +108806,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2772), 9, - anon_sym_DOT, + ACTIONS(2774), 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, - [97105] = 9, - ACTIONS(2777), 1, - anon_sym_EQ, - ACTIONS(2779), 1, + [97107] = 8, + ACTIONS(2781), 1, anon_sym_not, ACTIONS(2830), 1, anon_sym_is, @@ -108829,7 +108828,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2833), 2, anon_sym_LT, anon_sym_GT, - STATE(940), 2, + STATE(905), 2, sym__not_in, sym__is_not, ACTIONS(2827), 6, @@ -108839,41 +108838,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2772), 8, + ACTIONS(2774), 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, [97148] = 9, - ACTIONS(2102), 1, + ACTIONS(2100), 1, anon_sym_not, - ACTIONS(2212), 1, + ACTIONS(2198), 1, anon_sym_is, - ACTIONS(2790), 1, + ACTIONS(2772), 1, anon_sym_as, - STATE(1568), 1, + STATE(1563), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(2200), 2, anon_sym_LT, anon_sym_GT, - STATE(873), 2, + STATE(940), 2, sym__not_in, sym__is_not, - ACTIONS(2196), 6, + ACTIONS(2182), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2788), 8, + ACTIONS(2770), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -108883,29 +108883,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, [97191] = 8, - ACTIONS(2102), 1, + ACTIONS(2100), 1, anon_sym_not, - ACTIONS(2426), 1, + ACTIONS(2431), 1, anon_sym_is, - STATE(1563), 1, + STATE(1564), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2428), 2, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - STATE(941), 2, + STATE(905), 2, sym__not_in, sym__is_not, - ACTIONS(2410), 6, + ACTIONS(2415), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2788), 9, + ACTIONS(2770), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108916,31 +108916,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, [97232] = 9, - ACTIONS(2102), 1, + ACTIONS(2779), 1, + anon_sym_EQ, + ACTIONS(2781), 1, anon_sym_not, - ACTIONS(2184), 1, + ACTIONS(2839), 1, anon_sym_is, - ACTIONS(2790), 1, - anon_sym_EQ, - STATE(1564), 1, + STATE(1567), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2186), 2, + ACTIONS(2842), 2, anon_sym_LT, anon_sym_GT, - STATE(940), 2, + STATE(921), 2, sym__not_in, sym__is_not, - ACTIONS(2168), 6, + ACTIONS(2836), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2788), 8, + ACTIONS(2774), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -108950,120 +108950,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_type_conversion, [97275] = 9, - ACTIONS(2777), 1, - anon_sym_as, - ACTIONS(2779), 1, + ACTIONS(2100), 1, anon_sym_not, - ACTIONS(2839), 1, + ACTIONS(2234), 1, anon_sym_is, - STATE(1568), 1, + ACTIONS(2772), 1, + anon_sym_EQ, + STATE(1567), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2842), 2, + ACTIONS(2236), 2, anon_sym_LT, anon_sym_GT, - STATE(873), 2, + STATE(921), 2, sym__not_in, sym__is_not, - ACTIONS(2836), 6, + 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(2772), 8, + ACTIONS(2770), 8, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97318] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2847), 10, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2845), 11, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_type, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [97348] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(319), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, sym_type_conversion, - ACTIONS(277), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [97380] = 9, - ACTIONS(2102), 1, + [97318] = 9, + ACTIONS(2779), 1, + anon_sym_as, + ACTIONS(2781), 1, anon_sym_not, - ACTIONS(2292), 1, + ACTIONS(2848), 1, anon_sym_is, - ACTIONS(2790), 1, - anon_sym_as, - STATE(1575), 1, + STATE(1569), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + ACTIONS(2851), 2, anon_sym_LT, anon_sym_GT, - STATE(889), 2, + STATE(898), 2, sym__not_in, sym__is_not, - ACTIONS(2276), 6, + ACTIONS(2845), 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(2788), 7, + ACTIONS(2774), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -109071,32 +109016,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [97422] = 9, - ACTIONS(2102), 1, + [97360] = 9, + ACTIONS(2779), 1, + anon_sym_as, + ACTIONS(2781), 1, anon_sym_not, - ACTIONS(2324), 1, + ACTIONS(2857), 1, anon_sym_is, - ACTIONS(2790), 1, - anon_sym_as, - STATE(1579), 1, + STATE(1570), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2326), 2, + ACTIONS(2860), 2, anon_sym_LT, anon_sym_GT, - STATE(869), 2, + STATE(961), 2, sym__not_in, sym__is_not, - ACTIONS(2308), 6, + ACTIONS(2854), 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(2788), 7, + ACTIONS(2774), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -109104,11 +109049,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [97464] = 3, + [97402] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2851), 10, + ACTIONS(2865), 10, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, @@ -109119,7 +109064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2849), 11, + ACTIONS(2863), 11, anon_sym_print, anon_sym_match, anon_sym_async, @@ -109131,20 +109076,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [97494] = 4, + [97432] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 2, + ACTIONS(1653), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 5, + ACTIONS(1657), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1637), 14, + ACTIONS(1648), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109159,53 +109104,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97526] = 9, - ACTIONS(2777), 1, - anon_sym_as, - ACTIONS(2779), 1, - anon_sym_not, - ACTIONS(2856), 1, - anon_sym_is, - STATE(1575), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 2, - anon_sym_LT, - anon_sym_GT, - STATE(889), 2, - sym__not_in, - sym__is_not, - ACTIONS(2853), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2772), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [97568] = 4, + [97464] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, + ACTIONS(1631), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1563), 5, + ACTIONS(1633), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1547), 14, + ACTIONS(1626), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109220,20 +109132,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97600] = 4, + [97496] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1552), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(319), 5, + ACTIONS(1563), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(277), 14, + ACTIONS(1547), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109248,20 +109160,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97632] = 4, + [97528] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1563), 5, + ACTIONS(316), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1609), 14, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109276,78 +109188,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97664] = 9, - ACTIONS(2777), 1, - anon_sym_as, - ACTIONS(2779), 1, - anon_sym_not, - ACTIONS(2865), 1, - anon_sym_is, - STATE(1579), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2868), 2, - anon_sym_LT, - anon_sym_GT, - STATE(869), 2, - sym__not_in, - sym__is_not, - ACTIONS(2862), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2772), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [97706] = 4, + [97560] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1630), 5, + ACTIONS(316), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1623), 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, - [97738] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(663), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, @@ -109363,18 +109216,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97768] = 4, + [97592] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1646), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(663), 3, - anon_sym_RPAREN, + ACTIONS(1563), 5, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(277), 14, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1641), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109389,144 +109244,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97798] = 4, + [97624] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1648), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1547), 14, - anon_sym_DOT, + ACTIONS(2869), 10, + sym_string_start, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [97828] = 4, - ACTIONS(2871), 1, - anon_sym_COMMA, - STATE(1587), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(959), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [97858] = 4, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2867), 11, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97654] = 9, + ACTIONS(2100), 1, + anon_sym_not, + ACTIONS(2320), 1, + anon_sym_is, + ACTIONS(2772), 1, + anon_sym_as, + STATE(1570), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2873), 3, - anon_sym_RPAREN, + ACTIONS(2322), 2, + anon_sym_LT, + anon_sym_GT, + STATE(961), 2, + sym__not_in, + sym__is_not, + ACTIONS(2304), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2770), 7, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1547), 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, - [97888] = 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [97696] = 9, + ACTIONS(2100), 1, + anon_sym_not, + ACTIONS(2348), 1, + anon_sym_is, + ACTIONS(2772), 1, + anon_sym_as, + STATE(1569), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1415), 3, + ACTIONS(2350), 2, + anon_sym_LT, + anon_sym_GT, + STATE(898), 2, + sym__not_in, + sym__is_not, + ACTIONS(2332), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2770), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [97918] = 4, - ACTIONS(2877), 1, - anon_sym_COMMA, - STATE(1587), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2875), 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, - [97948] = 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [97738] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1415), 3, + ACTIONS(663), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -109545,51 +109363,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97978] = 13, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_AMP, - ACTIONS(2389), 1, - anon_sym_CARET, + [97768] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [98025] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1563), 2, + ACTIONS(663), 3, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1609), 14, + anon_sym_COLON, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109604,48 +109389,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98054] = 13, - ACTIONS(2328), 1, - anon_sym_DOT, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_AMP, - ACTIONS(2389), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2373), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [98101] = 2, + [97798] = 4, + ACTIONS(2873), 1, + anon_sym_COMMA, + STATE(1583), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 18, + ACTIONS(2871), 17, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -109661,17 +109415,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98126] = 4, + [97828] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 2, + ACTIONS(1552), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1630), 2, + ACTIONS(1616), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1623), 14, + anon_sym_COLON, + ACTIONS(1547), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109686,17 +109441,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98155] = 4, + [97858] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1552), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(319), 2, + ACTIONS(2876), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(277), 14, + anon_sym_COLON, + ACTIONS(1547), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109711,16 +109467,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98184] = 4, + [97888] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(319), 2, + ACTIONS(1409), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, @@ -109736,17 +109493,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98213] = 4, + [97918] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1614), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1609), 14, + ACTIONS(1409), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109761,7 +109519,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98242] = 4, + [97948] = 4, + ACTIONS(2878), 1, + anon_sym_COMMA, + STATE(1583), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(959), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [97978] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -109786,17 +109570,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98271] = 4, + [98007] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, - anon_sym_STAR, - anon_sym_SLASH, ACTIONS(1563), 2, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1547), 14, + anon_sym_RBRACK, + ACTIONS(1646), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1641), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109811,17 +109595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98300] = 4, + [98036] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1630), 2, - anon_sym_RPAREN, + ACTIONS(316), 2, anon_sym_COMMA, - ACTIONS(1623), 14, + anon_sym_RBRACK, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109836,17 +109620,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98329] = 4, + [98065] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_RPAREN, + ACTIONS(663), 2, anon_sym_COMMA, - ACTIONS(1637), 14, + anon_sym_COLON, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109861,16 +109645,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98358] = 4, + [98094] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(319), 2, - anon_sym_RPAREN, + ACTIONS(663), 2, anon_sym_COMMA, + anon_sym_COLON, ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, @@ -109886,42 +109670,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98387] = 4, + [98123] = 13, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_AMP, + ACTIONS(2378), 1, + anon_sym_CARET, + ACTIONS(2880), 1, + anon_sym_DOT, + ACTIONS(2882), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(2360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(319), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(277), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2362), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2372), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1265), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + [98170] = 13, + ACTIONS(2356), 1, + anon_sym_DOT, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2368), 1, + anon_sym_LBRACK, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, anon_sym_AMP, + ACTIONS(2378), 1, anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, anon_sym_LT_LT, - [98416] = 4, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1265), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [98217] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1614), 2, + ACTIONS(1552), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1609), 14, + ACTIONS(1616), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1547), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109936,37 +109763,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98445] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2880), 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, - [98470] = 4, + [98246] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1415), 2, + ACTIONS(1409), 2, anon_sym_COMMA, anon_sym_COLON, ACTIONS(277), 14, @@ -109984,17 +109788,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98499] = 4, + [98275] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1630), 2, + ACTIONS(1409), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1623), 14, + anon_sym_COLON, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110009,14 +109813,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98528] = 4, + [98304] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1552), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1648), 2, + ACTIONS(2876), 2, anon_sym_COMMA, anon_sym_COLON, ACTIONS(1547), 14, @@ -110034,16 +109838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98557] = 4, + [98333] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(663), 2, + ACTIONS(316), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, @@ -110059,16 +109863,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98586] = 4, + [98362] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(663), 2, + ACTIONS(316), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, @@ -110084,11 +109888,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98615] = 2, + [98391] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2875), 18, + ACTIONS(1563), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -110107,17 +109911,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98640] = 4, + [98416] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, + ACTIONS(1631), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2873), 2, + ACTIONS(1633), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1547), 14, + anon_sym_RBRACK, + ACTIONS(1626), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110132,51 +109936,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98669] = 13, - ACTIONS(2367), 1, + [98445] = 13, + ACTIONS(2210), 1, anon_sym_DOT, - ACTIONS(2369), 1, + ACTIONS(2222), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2385), 1, + ACTIONS(2374), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2376), 1, anon_sym_AMP, - ACTIONS(2389), 1, + ACTIONS(2378), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(2362), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1403), 2, + STATE(1265), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2381), 3, + ACTIONS(2370), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98716] = 4, + [98492] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, + ACTIONS(1653), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1563), 2, + ACTIONS(1657), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1547), 14, + anon_sym_RBRACK, + ACTIONS(1648), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110191,255 +109995,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98745] = 13, - ACTIONS(2080), 1, + [98521] = 13, + ACTIONS(2324), 1, anon_sym_DOT, - ACTIONS(2094), 1, + ACTIONS(2336), 1, anon_sym_LBRACK, - ACTIONS(2369), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2385), 1, + ACTIONS(2374), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2376), 1, anon_sym_AMP, - ACTIONS(2389), 1, + ACTIONS(2378), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(2362), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1403), 2, + STATE(1265), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2381), 3, + ACTIONS(2370), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98792] = 13, - ACTIONS(2268), 1, - anon_sym_DOT, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_AMP, - ACTIONS(2389), 1, - anon_sym_CARET, + [98568] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(316), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(277), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98839] = 13, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, anon_sym_AMP, - ACTIONS(2389), 1, anon_sym_CARET, - ACTIONS(2882), 1, - anon_sym_DOT, - ACTIONS(2884), 1, - anon_sym_LBRACK, + anon_sym_LT_LT, + [98597] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(1653), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(1657), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1648), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98886] = 13, - ACTIONS(2332), 1, - anon_sym_DOT, - ACTIONS(2344), 1, - anon_sym_LBRACK, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, anon_sym_AMP, - ACTIONS(2389), 1, anon_sym_CARET, + anon_sym_LT_LT, + [98626] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(1563), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1646), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(1641), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98933] = 13, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, anon_sym_AMP, - ACTIONS(2389), 1, anon_sym_CARET, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2414), 1, - anon_sym_LBRACK, + anon_sym_LT_LT, + [98655] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(1631), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(1633), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1626), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98980] = 13, - ACTIONS(2300), 1, - anon_sym_DOT, - ACTIONS(2312), 1, - anon_sym_LBRACK, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, anon_sym_AMP, - ACTIONS(2389), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2373), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2383), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [99027] = 13, - ACTIONS(2188), 1, + [98684] = 13, + ACTIONS(2078), 1, anon_sym_DOT, - ACTIONS(2200), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(2369), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2385), 1, + ACTIONS(2374), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2376), 1, anon_sym_AMP, - ACTIONS(2389), 1, + ACTIONS(2378), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(2362), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1403), 2, + STATE(1265), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2381), 3, + ACTIONS(2370), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99074] = 4, + [98731] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 2, + ACTIONS(1552), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, + ACTIONS(1563), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1637), 14, + ACTIONS(1547), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110454,17 +110188,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99103] = 4, + [98760] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 2, + ACTIONS(1552), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, + ACTIONS(1563), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(1637), 14, + ACTIONS(1547), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110479,17 +110213,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99132] = 4, + [98789] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1563), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1646), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(319), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(277), 14, + ACTIONS(1641), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110504,17 +110238,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99161] = 4, + [98818] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1631), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(319), 2, + ACTIONS(1633), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(277), 14, + ACTIONS(1626), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110529,17 +110263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99190] = 4, + [98847] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1653), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1415), 2, + ACTIONS(1657), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + anon_sym_in, + ACTIONS(1648), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110554,11 +110288,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99219] = 2, + [98876] = 13, + ACTIONS(2268), 1, + anon_sym_DOT, + ACTIONS(2280), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_AMP, + ACTIONS(2378), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 18, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1265), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [98923] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2871), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -110577,14 +110345,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99244] = 2, + [98948] = 13, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_AMP, + ACTIONS(2378), 1, + anon_sym_CARET, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1265), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [98995] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2880), 17, + ACTIONS(2884), 18, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, - anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -110599,84 +110402,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99268] = 13, - ACTIONS(2888), 1, - sym_identifier, - ACTIONS(2890), 1, + [99020] = 13, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, - anon_sym_STAR, - ACTIONS(2894), 1, - anon_sym_COLON, - ACTIONS(2896), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2898), 1, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_AMP, + ACTIONS(2378), 1, + anon_sym_CARET, + ACTIONS(2391), 1, + anon_sym_DOT, + ACTIONS(2393), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, anon_sym_SLASH, - STATE(2457), 1, - sym_parameter, - STATE(2458), 1, - sym_tuple_pattern, - STATE(2639), 1, - sym_lambda_parameters, - STATE(2718), 1, - sym__parameters, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1265), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [99067] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2577), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99314] = 13, - ACTIONS(2888), 1, - sym_identifier, - ACTIONS(2890), 1, - anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(279), 2, anon_sym_STAR, - ACTIONS(2896), 1, - anon_sym_STAR_STAR, - ACTIONS(2898), 1, anon_sym_SLASH, - ACTIONS(2900), 1, - anon_sym_COLON, - STATE(2457), 1, - sym_parameter, - STATE(2458), 1, - sym_tuple_pattern, - STATE(2711), 1, - sym_lambda_parameters, - STATE(2718), 1, - sym__parameters, + ACTIONS(316), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(277), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [99096] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2577), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99360] = 5, - ACTIONS(2904), 1, - anon_sym_COLON, - ACTIONS(2906), 1, - anon_sym_EQ, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(316), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(277), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [99125] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2902), 2, + ACTIONS(2886), 18, sym__newline, anon_sym_SEMI, - ACTIONS(2908), 13, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110690,52 +110509,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99390] = 13, - ACTIONS(2888), 1, - sym_identifier, - ACTIONS(2890), 1, + [99150] = 13, + ACTIONS(2296), 1, + anon_sym_DOT, + ACTIONS(2308), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, - anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2898), 1, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_AMP, + ACTIONS(2378), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2910), 1, - anon_sym_COLON, - STATE(2457), 1, - sym_parameter, - STATE(2458), 1, - sym_tuple_pattern, - STATE(2671), 1, - sym_lambda_parameters, - STATE(2718), 1, - sym__parameters, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1265), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [99197] = 13, + ACTIONS(2174), 1, + anon_sym_DOT, + ACTIONS(2186), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_AMP, + ACTIONS(2378), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2577), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99436] = 6, - ACTIONS(2904), 1, - anon_sym_COLON, - ACTIONS(2906), 1, - anon_sym_EQ, - ACTIONS(2912), 1, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1265), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [99244] = 4, + ACTIONS(2888), 1, anon_sym_COMMA, - STATE(1584), 1, + STATE(1636), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 13, + ACTIONS(959), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110749,52 +110601,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99468] = 13, - ACTIONS(2888), 1, - sym_identifier, + [99272] = 13, ACTIONS(2890), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2892), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, anon_sym_STAR, ACTIONS(2896), 1, - anon_sym_STAR_STAR, + anon_sym_COLON, ACTIONS(2898), 1, + anon_sym_STAR_STAR, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2914), 1, - anon_sym_COLON, - STATE(2457), 1, + STATE(2268), 1, sym_parameter, - STATE(2458), 1, + STATE(2270), 1, sym_tuple_pattern, - STATE(2718), 1, + STATE(2733), 1, sym__parameters, - STATE(2724), 1, + STATE(2766), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2525), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2524), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99514] = 6, - ACTIONS(2904), 1, - anon_sym_COLON, - ACTIONS(2906), 1, - anon_sym_EQ, - ACTIONS(2916), 1, - anon_sym_COMMA, - STATE(1644), 1, - aux_sym__patterns_repeat1, + [99318] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 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, @@ -110808,143 +110656,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99546] = 13, - ACTIONS(2888), 1, - sym_identifier, + [99342] = 13, ACTIONS(2890), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2892), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, anon_sym_STAR, - ACTIONS(2896), 1, - anon_sym_STAR_STAR, ACTIONS(2898), 1, + anon_sym_STAR_STAR, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2918), 1, + ACTIONS(2902), 1, anon_sym_COLON, - STATE(2457), 1, + STATE(2268), 1, sym_parameter, - STATE(2458), 1, + STATE(2270), 1, sym_tuple_pattern, - STATE(2718), 1, + STATE(2733), 1, sym__parameters, - STATE(2750), 1, + STATE(2734), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2525), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2524), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99592] = 13, - ACTIONS(2888), 1, - sym_identifier, + [99388] = 13, ACTIONS(2890), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2892), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, anon_sym_STAR, - ACTIONS(2896), 1, - anon_sym_STAR_STAR, ACTIONS(2898), 1, + anon_sym_STAR_STAR, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2920), 1, + ACTIONS(2904), 1, anon_sym_COLON, - STATE(2457), 1, + STATE(2268), 1, sym_parameter, - STATE(2458), 1, + STATE(2270), 1, sym_tuple_pattern, - STATE(2600), 1, + STATE(2650), 1, sym_lambda_parameters, - STATE(2718), 1, + STATE(2733), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2525), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2524), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99638] = 13, - ACTIONS(2888), 1, - sym_identifier, + [99434] = 13, ACTIONS(2890), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2892), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, anon_sym_STAR, - ACTIONS(2896), 1, - anon_sym_STAR_STAR, ACTIONS(2898), 1, + anon_sym_STAR_STAR, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2922), 1, + ACTIONS(2906), 1, anon_sym_COLON, - STATE(2457), 1, + STATE(2268), 1, sym_parameter, - STATE(2458), 1, + STATE(2270), 1, sym_tuple_pattern, - STATE(2677), 1, + STATE(2659), 1, sym_lambda_parameters, - STATE(2718), 1, + STATE(2733), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2525), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2524), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99684] = 13, - ACTIONS(2888), 1, - sym_identifier, + [99480] = 13, ACTIONS(2890), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2892), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, anon_sym_STAR, - ACTIONS(2896), 1, - anon_sym_STAR_STAR, ACTIONS(2898), 1, + anon_sym_STAR_STAR, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2924), 1, + ACTIONS(2908), 1, anon_sym_COLON, - STATE(2457), 1, + STATE(2268), 1, sym_parameter, - STATE(2458), 1, + STATE(2270), 1, sym_tuple_pattern, - STATE(2682), 1, + STATE(2725), 1, sym_lambda_parameters, - STATE(2718), 1, + STATE(2733), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2525), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2524), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99730] = 2, + [99526] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2875), 17, + ACTIONS(2886), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -110962,15 +110810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99754] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1563), 17, + [99550] = 6, + ACTIONS(2910), 1, anon_sym_COMMA, + ACTIONS(2912), 1, anon_sym_COLON, - anon_sym_in, + ACTIONS(2914), 1, anon_sym_EQ, + STATE(1588), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2916), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110984,15 +110836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99778] = 4, - ACTIONS(2926), 1, + [99582] = 4, + ACTIONS(2918), 1, anon_sym_COMMA, - STATE(1641), 1, + STATE(1636), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2875), 15, + ACTIONS(2871), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -111008,15 +110860,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99806] = 2, + [99610] = 5, + ACTIONS(2912), 1, + anon_sym_COLON, + ACTIONS(2914), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 17, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, + ACTIONS(2921), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2916), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111030,50 +110885,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99830] = 13, - ACTIONS(2888), 1, - sym_identifier, + [99640] = 13, ACTIONS(2890), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2892), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, anon_sym_STAR, - ACTIONS(2896), 1, - anon_sym_STAR_STAR, ACTIONS(2898), 1, + anon_sym_STAR_STAR, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2929), 1, + ACTIONS(2923), 1, anon_sym_COLON, - STATE(2457), 1, + STATE(2268), 1, sym_parameter, - STATE(2458), 1, + STATE(2270), 1, sym_tuple_pattern, - STATE(2609), 1, + STATE(2708), 1, sym_lambda_parameters, - STATE(2718), 1, + STATE(2733), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2525), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2524), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99876] = 4, - ACTIONS(2931), 1, + [99686] = 6, + ACTIONS(2912), 1, + anon_sym_COLON, + ACTIONS(2914), 1, + anon_sym_EQ, + ACTIONS(2925), 1, anon_sym_COMMA, - STATE(1641), 1, + STATE(1627), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(959), 15, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(2916), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111087,112 +110944,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99904] = 13, - ACTIONS(2888), 1, - sym_identifier, + [99718] = 13, ACTIONS(2890), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2892), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, anon_sym_STAR, - ACTIONS(2896), 1, - anon_sym_STAR_STAR, ACTIONS(2898), 1, + anon_sym_STAR_STAR, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2933), 1, + ACTIONS(2927), 1, anon_sym_COLON, - STATE(2457), 1, + STATE(2268), 1, sym_parameter, - STATE(2458), 1, + STATE(2270), 1, sym_tuple_pattern, - STATE(2717), 1, + STATE(2646), 1, sym_lambda_parameters, - STATE(2718), 1, + STATE(2733), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2525), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2524), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99950] = 13, - ACTIONS(2888), 1, - sym_identifier, + [99764] = 13, ACTIONS(2890), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2892), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, anon_sym_STAR, - ACTIONS(2896), 1, - anon_sym_STAR_STAR, ACTIONS(2898), 1, + anon_sym_STAR_STAR, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2935), 1, + ACTIONS(2929), 1, anon_sym_COLON, - STATE(2457), 1, + STATE(2268), 1, sym_parameter, - STATE(2458), 1, + STATE(2270), 1, sym_tuple_pattern, - STATE(2655), 1, - sym_lambda_parameters, - STATE(2718), 1, + STATE(2733), 1, sym__parameters, + STATE(2783), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2525), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2524), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99996] = 12, - ACTIONS(2937), 1, + [99810] = 13, + ACTIONS(2890), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2892), 1, anon_sym_LPAREN, - ACTIONS(2941), 1, - anon_sym_RPAREN, - ACTIONS(2943), 1, + ACTIONS(2894), 1, anon_sym_STAR, - ACTIONS(2945), 1, + ACTIONS(2898), 1, anon_sym_STAR_STAR, - ACTIONS(2947), 1, + ACTIONS(2900), 1, anon_sym_SLASH, - STATE(2482), 1, + ACTIONS(2931), 1, + anon_sym_COLON, + STATE(2268), 1, sym_parameter, - STATE(2487), 1, + STATE(2270), 1, sym_tuple_pattern, - STATE(2763), 1, + STATE(2733), 1, sym__parameters, + STATE(2764), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2489), 2, + STATE(2525), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2537), 5, + STATE(2524), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100039] = 4, - ACTIONS(2904), 1, + [99856] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2871), 17, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(2906), 1, + 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, + [99880] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 13, + ACTIONS(1563), 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, @@ -111206,65 +111087,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100065] = 11, - ACTIONS(2888), 1, - sym_identifier, + [99904] = 13, ACTIONS(2890), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2892), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, anon_sym_STAR, - ACTIONS(2896), 1, - anon_sym_STAR_STAR, ACTIONS(2898), 1, + anon_sym_STAR_STAR, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2949), 1, + ACTIONS(2933), 1, anon_sym_COLON, - STATE(2458), 1, - sym_tuple_pattern, - STATE(2549), 1, + STATE(2268), 1, sym_parameter, + STATE(2270), 1, + sym_tuple_pattern, + STATE(2672), 1, + sym_lambda_parameters, + STATE(2733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2525), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2524), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100105] = 11, - ACTIONS(2888), 1, - sym_identifier, + [99950] = 13, ACTIONS(2890), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2892), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, anon_sym_STAR, - ACTIONS(2896), 1, - anon_sym_STAR_STAR, ACTIONS(2898), 1, + anon_sym_STAR_STAR, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2951), 1, + ACTIONS(2935), 1, anon_sym_COLON, - STATE(2458), 1, + STATE(2268), 1, + sym_parameter, + STATE(2270), 1, + sym_tuple_pattern, + STATE(2619), 1, + sym_lambda_parameters, + STATE(2733), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2525), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2524), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [99996] = 12, + ACTIONS(2937), 1, + sym_identifier, + ACTIONS(2939), 1, + anon_sym_LPAREN, + ACTIONS(2941), 1, + anon_sym_RPAREN, + ACTIONS(2943), 1, + anon_sym_STAR, + ACTIONS(2945), 1, + anon_sym_STAR_STAR, + ACTIONS(2947), 1, + anon_sym_SLASH, + STATE(2401), 1, sym_tuple_pattern, - STATE(2549), 1, + STATE(2403), 1, sym_parameter, + STATE(2606), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2396), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2575), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100145] = 11, + [100039] = 11, ACTIONS(2937), 1, sym_identifier, ACTIONS(2939), 1, @@ -111277,23 +111197,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(2949), 1, anon_sym_RPAREN, - STATE(2487), 1, + STATE(2401), 1, sym_tuple_pattern, - STATE(2593), 1, + STATE(2546), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2489), 2, + STATE(2396), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2537), 5, + STATE(2575), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100185] = 11, + [100079] = 11, ACTIONS(2937), 1, sym_identifier, ACTIONS(2939), 1, @@ -111306,44 +111226,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(2951), 1, anon_sym_RPAREN, - STATE(2487), 1, + STATE(2401), 1, sym_tuple_pattern, - STATE(2593), 1, + STATE(2546), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2489), 2, + STATE(2396), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2537), 5, + STATE(2575), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100225] = 10, - ACTIONS(2888), 1, - sym_identifier, + [100119] = 11, ACTIONS(2890), 1, + sym_identifier, + ACTIONS(2892), 1, anon_sym_LPAREN, + ACTIONS(2894), 1, + anon_sym_STAR, + ACTIONS(2898), 1, + anon_sym_STAR_STAR, + ACTIONS(2900), 1, + anon_sym_SLASH, + ACTIONS(2951), 1, + anon_sym_COLON, + STATE(2270), 1, + sym_tuple_pattern, + STATE(2564), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2525), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2524), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [100159] = 4, + ACTIONS(2912), 1, + anon_sym_COLON, + ACTIONS(2914), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2916), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [100185] = 11, + ACTIONS(2890), 1, + sym_identifier, ACTIONS(2892), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2898), 1, anon_sym_STAR_STAR, + ACTIONS(2900), 1, + anon_sym_SLASH, + ACTIONS(2949), 1, + anon_sym_COLON, + STATE(2270), 1, + sym_tuple_pattern, + STATE(2564), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2525), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2524), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [100225] = 10, + ACTIONS(2890), 1, + sym_identifier, + ACTIONS(2892), 1, + anon_sym_LPAREN, + ACTIONS(2894), 1, + anon_sym_STAR, ACTIONS(2898), 1, + anon_sym_STAR_STAR, + ACTIONS(2900), 1, anon_sym_SLASH, - STATE(2458), 1, + STATE(2270), 1, sym_tuple_pattern, - STATE(2549), 1, + STATE(2564), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2525), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2524), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, @@ -111360,102 +111360,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2947), 1, anon_sym_SLASH, - STATE(2487), 1, + STATE(2401), 1, sym_tuple_pattern, - STATE(2593), 1, + STATE(2546), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2489), 2, + STATE(2396), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2537), 5, + STATE(2575), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100299] = 13, - ACTIONS(2953), 1, - anon_sym_COMMA, + [100299] = 5, ACTIONS(2955), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(2958), 1, + anon_sym_and, + ACTIONS(2960), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2953), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [100324] = 13, + ACTIONS(2962), 1, + anon_sym_COMMA, + ACTIONS(2964), 1, + anon_sym_as, + ACTIONS(2966), 1, anon_sym_if, - ACTIONS(2959), 1, + ACTIONS(2968), 1, anon_sym_COLON, - ACTIONS(2961), 1, + ACTIONS(2970), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2972), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2974), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2976), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2978), 1, anon_sym_or, - STATE(1865), 1, + STATE(1878), 1, sym_for_in_clause, - STATE(2348), 1, + STATE(2273), 1, aux_sym__collection_elements_repeat1, - STATE(2618), 1, + STATE(2641), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100340] = 13, - ACTIONS(2953), 1, + [100365] = 13, + ACTIONS(2962), 1, anon_sym_COMMA, - ACTIONS(2955), 1, + ACTIONS(2964), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(2966), 1, anon_sym_if, - ACTIONS(2959), 1, + ACTIONS(2968), 1, anon_sym_COLON, - ACTIONS(2961), 1, + ACTIONS(2970), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2972), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2974), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2976), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2978), 1, anon_sym_or, - STATE(1865), 1, + STATE(1878), 1, sym_for_in_clause, - STATE(2348), 1, + STATE(2273), 1, aux_sym__collection_elements_repeat1, - STATE(2690), 1, + STATE(2706), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100381] = 4, - ACTIONS(2973), 1, + [100406] = 13, + ACTIONS(2962), 1, + anon_sym_COMMA, + ACTIONS(2964), 1, + anon_sym_as, + ACTIONS(2966), 1, + anon_sym_if, + ACTIONS(2968), 1, + anon_sym_COLON, + ACTIONS(2970), 1, + anon_sym_async, + ACTIONS(2972), 1, + anon_sym_for, + ACTIONS(2974), 1, + anon_sym_RBRACE, + ACTIONS(2976), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2978), 1, anon_sym_or, + STATE(1878), 1, + sym_for_in_clause, + STATE(2273), 1, + aux_sym__collection_elements_repeat1, + STATE(2758), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 10, - 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, - [100404] = 2, + [100447] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 12, + ACTIONS(2076), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -111468,120 +111497,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [100423] = 3, - ACTIONS(2973), 1, + [100466] = 6, + ACTIONS(2958), 1, anon_sym_and, + ACTIONS(2960), 1, + anon_sym_or, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 11, + ACTIONS(2980), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_or, - [100444] = 6, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, + [100493] = 13, + ACTIONS(2962), 1, + anon_sym_COMMA, + ACTIONS(2964), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(2966), 1, anon_sym_if, + ACTIONS(2968), 1, + anon_sym_COLON, + ACTIONS(2970), 1, + anon_sym_async, + ACTIONS(2972), 1, + anon_sym_for, + ACTIONS(2974), 1, + anon_sym_RBRACE, + ACTIONS(2976), 1, + anon_sym_and, + ACTIONS(2978), 1, + anon_sym_or, + STATE(1878), 1, + sym_for_in_clause, + STATE(2273), 1, + aux_sym__collection_elements_repeat1, + STATE(2745), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [100534] = 3, + ACTIONS(2958), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2979), 8, + ACTIONS(2986), 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_EQ, anon_sym_PIPE, - [100471] = 6, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, anon_sym_or, - ACTIONS(2981), 1, + [100555] = 13, + ACTIONS(2962), 1, + anon_sym_COMMA, + ACTIONS(2964), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(2966), 1, anon_sym_if, + ACTIONS(2968), 1, + anon_sym_COLON, + ACTIONS(2970), 1, + anon_sym_async, + ACTIONS(2972), 1, + anon_sym_for, + ACTIONS(2974), 1, + anon_sym_RBRACE, + ACTIONS(2976), 1, + anon_sym_and, + ACTIONS(2978), 1, + anon_sym_or, + STATE(1878), 1, + sym_for_in_clause, + STATE(2273), 1, + aux_sym__collection_elements_repeat1, + STATE(2742), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2985), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + [100596] = 13, + ACTIONS(2962), 1, anon_sym_COMMA, + ACTIONS(2964), 1, + anon_sym_as, + ACTIONS(2966), 1, + anon_sym_if, + ACTIONS(2968), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [100498] = 6, - ACTIONS(2973), 1, + ACTIONS(2970), 1, + anon_sym_async, + ACTIONS(2972), 1, + anon_sym_for, + ACTIONS(2974), 1, + anon_sym_RBRACE, + ACTIONS(2976), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2978), 1, anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, + STATE(1878), 1, + sym_for_in_clause, + STATE(2273), 1, + aux_sym__collection_elements_repeat1, + STATE(2632), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2987), 8, + [100637] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2986), 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, - [100525] = 13, - ACTIONS(2953), 1, + anon_sym_and, + anon_sym_or, + [100656] = 13, + ACTIONS(2962), 1, anon_sym_COMMA, - ACTIONS(2955), 1, + ACTIONS(2964), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(2966), 1, anon_sym_if, - ACTIONS(2959), 1, + ACTIONS(2968), 1, anon_sym_COLON, - ACTIONS(2961), 1, + ACTIONS(2970), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2972), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2974), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2976), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2978), 1, anon_sym_or, - STATE(1865), 1, + STATE(1878), 1, sym_for_in_clause, - STATE(2348), 1, + STATE(2273), 1, aux_sym__collection_elements_repeat1, - STATE(2670), 1, + STATE(2624), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100566] = 2, + [100697] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 12, + ACTIONS(2988), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -111594,250 +111682,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [100585] = 5, - ACTIONS(2973), 1, + [100716] = 6, + ACTIONS(2958), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2960), 1, anon_sym_or, - ACTIONS(2993), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2984), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 9, + ACTIONS(2990), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100610] = 2, + [100743] = 6, + ACTIONS(2958), 1, + anon_sym_and, + ACTIONS(2960), 1, + anon_sym_or, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2078), 12, + ACTIONS(2992), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, + [100770] = 4, + ACTIONS(2958), 1, anon_sym_and, + ACTIONS(2960), 1, anon_sym_or, - [100629] = 13, - ACTIONS(2953), 1, - anon_sym_COMMA, - ACTIONS(2955), 1, - anon_sym_as, - ACTIONS(2957), 1, - anon_sym_if, - ACTIONS(2959), 1, - anon_sym_COLON, - ACTIONS(2961), 1, - anon_sym_async, - ACTIONS(2963), 1, - anon_sym_for, - ACTIONS(2965), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, - anon_sym_and, - ACTIONS(2969), 1, - anon_sym_or, - STATE(1865), 1, - sym_for_in_clause, - STATE(2348), 1, - aux_sym__collection_elements_repeat1, - STATE(2742), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [100670] = 13, - ACTIONS(2953), 1, - anon_sym_COMMA, - ACTIONS(2955), 1, - anon_sym_as, - ACTIONS(2957), 1, - anon_sym_if, - ACTIONS(2959), 1, - anon_sym_COLON, - ACTIONS(2961), 1, - anon_sym_async, - ACTIONS(2963), 1, - anon_sym_for, - ACTIONS(2965), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, - anon_sym_and, - ACTIONS(2969), 1, - anon_sym_or, - STATE(1865), 1, - sym_for_in_clause, - STATE(2348), 1, - aux_sym__collection_elements_repeat1, - STATE(2669), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100711] = 13, - ACTIONS(2953), 1, + ACTIONS(2994), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, - ACTIONS(2955), 1, anon_sym_as, - ACTIONS(2957), 1, anon_sym_if, - ACTIONS(2959), 1, anon_sym_COLON, - ACTIONS(2961), 1, - anon_sym_async, - ACTIONS(2963), 1, - anon_sym_for, - ACTIONS(2965), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, - anon_sym_and, - ACTIONS(2969), 1, - anon_sym_or, - STATE(1865), 1, - sym_for_in_clause, - STATE(2348), 1, - aux_sym__collection_elements_repeat1, - STATE(2739), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [100752] = 13, - ACTIONS(2953), 1, + anon_sym_EQ, + anon_sym_PIPE, + [100793] = 13, + ACTIONS(2962), 1, anon_sym_COMMA, - ACTIONS(2955), 1, + ACTIONS(2964), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(2966), 1, anon_sym_if, - ACTIONS(2959), 1, + ACTIONS(2968), 1, anon_sym_COLON, - ACTIONS(2961), 1, + ACTIONS(2970), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2972), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2974), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2976), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2978), 1, anon_sym_or, - STATE(1865), 1, + STATE(1878), 1, sym_for_in_clause, - STATE(2348), 1, + STATE(2273), 1, aux_sym__collection_elements_repeat1, - STATE(2727), 1, + STATE(2656), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100793] = 13, - ACTIONS(2953), 1, + [100834] = 12, + ACTIONS(2996), 1, + anon_sym_RPAREN, + ACTIONS(2998), 1, anon_sym_COMMA, - ACTIONS(2955), 1, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(3002), 1, anon_sym_if, - ACTIONS(2959), 1, - anon_sym_COLON, - ACTIONS(2961), 1, + ACTIONS(3004), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(3006), 1, anon_sym_for, - ACTIONS(2965), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(3010), 1, anon_sym_or, - STATE(1865), 1, + STATE(1850), 1, sym_for_in_clause, - STATE(2348), 1, - aux_sym__collection_elements_repeat1, - STATE(2607), 1, + STATE(2428), 1, + aux_sym_argument_list_repeat1, + STATE(2635), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100834] = 8, + [100872] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3002), 1, + ACTIONS(3018), 1, sym_string_end, - STATE(1812), 2, + STATE(1816), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1715), 3, + STATE(1687), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [100864] = 12, - ACTIONS(2965), 1, - anon_sym_RBRACK, - ACTIONS(3004), 1, - anon_sym_COMMA, - ACTIONS(3006), 1, - anon_sym_as, - ACTIONS(3008), 1, - anon_sym_if, - ACTIONS(3010), 1, - anon_sym_async, - ACTIONS(3012), 1, - anon_sym_for, - ACTIONS(3014), 1, - anon_sym_and, - ACTIONS(3016), 1, - anon_sym_or, - STATE(1851), 1, - sym_for_in_clause, - STATE(2311), 1, - aux_sym__collection_elements_repeat1, - STATE(2615), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, [100902] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3018), 1, + ACTIONS(3020), 1, sym_string_end, - STATE(1812), 2, + STATE(1816), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1675), 3, + STATE(1684), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, @@ -111846,1027 +111846,1082 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3020), 1, + ACTIONS(3022), 1, sym_string_end, - STATE(1812), 2, + STATE(1816), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1679), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, [100962] = 12, - ACTIONS(3022), 1, - anon_sym_RPAREN, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3026), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_if, - ACTIONS(3030), 1, - anon_sym_async, - ACTIONS(3032), 1, - anon_sym_for, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, - STATE(1843), 1, - sym_for_in_clause, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, - STATE(2660), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101000] = 12, - ACTIONS(3026), 1, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3002), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3004), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3006), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3010), 1, anon_sym_or, - ACTIONS(3038), 1, + ACTIONS(3024), 1, anon_sym_RPAREN, - ACTIONS(3040), 1, + ACTIONS(3026), 1, anon_sym_COMMA, - STATE(1843), 1, + STATE(1850), 1, sym_for_in_clause, - STATE(2335), 1, + STATE(2443), 1, aux_sym_argument_list_repeat1, - STATE(2660), 1, + STATE(2699), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101038] = 8, + [101000] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3042), 1, + ACTIONS(3028), 1, sym_string_end, - STATE(1812), 2, + STATE(1816), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1679), 3, + STATE(1673), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101068] = 8, + [101030] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3044), 1, + ACTIONS(3030), 1, sym_string_end, - STATE(1812), 2, + STATE(1816), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1687), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101098] = 12, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3026), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_if, - ACTIONS(3030), 1, - anon_sym_async, - ACTIONS(3032), 1, - anon_sym_for, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, - ACTIONS(3046), 1, - anon_sym_RPAREN, - STATE(1843), 1, - sym_for_in_clause, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, - STATE(2726), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, + [101060] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [101136] = 12, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3026), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_if, - ACTIONS(3030), 1, - anon_sym_async, + ACTIONS(3012), 1, + anon_sym_LBRACE, + ACTIONS(3016), 1, + anon_sym_BSLASH, ACTIONS(3032), 1, - anon_sym_for, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, - ACTIONS(3048), 1, - anon_sym_RPAREN, - STATE(1843), 1, - sym_for_in_clause, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, - STATE(2707), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, + sym_string_end, + STATE(1816), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3014), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1687), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [101090] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [101174] = 12, - ACTIONS(3026), 1, + ACTIONS(3012), 1, + anon_sym_LBRACE, + ACTIONS(3016), 1, + anon_sym_BSLASH, + ACTIONS(3034), 1, + sym_string_end, + STATE(1816), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3014), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1701), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [101120] = 12, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3002), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3004), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3006), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3010), 1, anon_sym_or, - ACTIONS(3050), 1, + ACTIONS(3036), 1, anon_sym_RPAREN, - ACTIONS(3052), 1, + ACTIONS(3038), 1, anon_sym_COMMA, - STATE(1843), 1, + STATE(1850), 1, sym_for_in_clause, - STATE(2472), 1, + STATE(2380), 1, aux_sym_argument_list_repeat1, - STATE(2726), 1, + STATE(2649), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101212] = 8, + [101158] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3054), 1, + ACTIONS(3040), 1, sym_string_end, - STATE(1812), 2, + STATE(1816), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1687), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101242] = 8, + [101188] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3056), 1, + ACTIONS(3042), 1, sym_string_end, - STATE(1812), 2, + STATE(1816), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1685), 3, + STATE(1708), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101272] = 8, + [101218] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3058), 1, + ACTIONS(3044), 1, sym_string_end, - STATE(1812), 2, + STATE(1816), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1687), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101302] = 12, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3026), 1, + [101248] = 12, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3002), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3004), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3006), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3010), 1, anon_sym_or, - ACTIONS(3060), 1, + ACTIONS(3046), 1, anon_sym_RPAREN, - STATE(1843), 1, + ACTIONS(3048), 1, + anon_sym_COMMA, + STATE(1850), 1, sym_for_in_clause, - STATE(2254), 1, + STATE(2308), 1, aux_sym__collection_elements_repeat1, - STATE(2721), 1, + STATE(2751), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101340] = 12, - ACTIONS(3026), 1, + [101286] = 12, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3002), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3004), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3006), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3010), 1, anon_sym_or, - ACTIONS(3062), 1, + ACTIONS(3050), 1, anon_sym_RPAREN, - ACTIONS(3064), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - STATE(1843), 1, + STATE(1850), 1, sym_for_in_clause, - STATE(2282), 1, + STATE(2276), 1, aux_sym_argument_list_repeat1, - STATE(2721), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101378] = 12, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3026), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_if, - ACTIONS(3030), 1, - anon_sym_async, - ACTIONS(3032), 1, - anon_sym_for, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, - ACTIONS(3066), 1, - anon_sym_RPAREN, - STATE(1843), 1, - sym_for_in_clause, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, - STATE(2627), 1, + STATE(2751), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101416] = 8, + [101324] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3054), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3060), 1, anon_sym_BSLASH, - ACTIONS(3068), 1, + ACTIONS(3063), 1, sym_string_end, - STATE(1812), 2, + STATE(1816), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3057), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1690), 3, + STATE(1687), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101446] = 8, - ACTIONS(3), 1, + [101354] = 12, + ACTIONS(3000), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_if, + ACTIONS(3004), 1, + anon_sym_async, + ACTIONS(3006), 1, + anon_sym_for, + ACTIONS(3008), 1, + anon_sym_and, + ACTIONS(3010), 1, + anon_sym_or, + ACTIONS(3065), 1, + anon_sym_RPAREN, + ACTIONS(3067), 1, + anon_sym_COMMA, + STATE(1850), 1, + sym_for_in_clause, + STATE(2477), 1, + aux_sym_argument_list_repeat1, + STATE(2770), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, - anon_sym_LBRACE, - ACTIONS(3000), 1, - anon_sym_BSLASH, - ACTIONS(3070), 1, - sym_string_end, - STATE(1812), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(2998), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1706), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101476] = 12, - ACTIONS(3024), 1, + [101392] = 12, + ACTIONS(2974), 1, + anon_sym_RBRACK, + ACTIONS(3069), 1, anon_sym_COMMA, - ACTIONS(3026), 1, + ACTIONS(3071), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3073), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3075), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3077), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3079), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3081), 1, anon_sym_or, - ACTIONS(3072), 1, - anon_sym_RPAREN, - STATE(1843), 1, + STATE(1853), 1, sym_for_in_clause, - STATE(2254), 1, + STATE(2388), 1, aux_sym__collection_elements_repeat1, - STATE(2713), 1, + STATE(2634), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101514] = 12, - ACTIONS(3026), 1, + [101430] = 12, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3002), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3004), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3006), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3010), 1, anon_sym_or, - ACTIONS(3074), 1, + ACTIONS(3083), 1, anon_sym_RPAREN, - ACTIONS(3076), 1, + ACTIONS(3085), 1, anon_sym_COMMA, - STATE(1843), 1, + STATE(1850), 1, sym_for_in_clause, - STATE(2301), 1, + STATE(2471), 1, aux_sym_argument_list_repeat1, - STATE(2627), 1, + STATE(2693), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101552] = 12, - ACTIONS(3026), 1, + [101468] = 12, + ACTIONS(2974), 1, + anon_sym_RBRACK, + ACTIONS(3069), 1, + anon_sym_COMMA, + ACTIONS(3071), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3073), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3075), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3077), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3079), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3081), 1, anon_sym_or, - ACTIONS(3078), 1, - anon_sym_RPAREN, - ACTIONS(3080), 1, - anon_sym_COMMA, - STATE(1843), 1, + STATE(1853), 1, sym_for_in_clause, - STATE(2324), 1, - aux_sym_argument_list_repeat1, - STATE(2713), 1, + STATE(2388), 1, + aux_sym__collection_elements_repeat1, + STATE(2767), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101590] = 12, - ACTIONS(3022), 1, - anon_sym_RPAREN, - ACTIONS(3026), 1, + [101506] = 12, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3002), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3004), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3006), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3010), 1, anon_sym_or, - ACTIONS(3082), 1, + ACTIONS(3048), 1, anon_sym_COMMA, - STATE(1843), 1, + ACTIONS(3087), 1, + anon_sym_RPAREN, + STATE(1850), 1, sym_for_in_clause, - STATE(2254), 1, + STATE(2308), 1, aux_sym__collection_elements_repeat1, - STATE(2660), 1, + STATE(2770), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101628] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(2996), 1, - anon_sym_LBRACE, - ACTIONS(3000), 1, - anon_sym_BSLASH, - ACTIONS(3085), 1, - sym_string_end, - STATE(1812), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(2998), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1696), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101658] = 8, + [101544] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3087), 1, + ACTIONS(3089), 1, sym_string_end, - STATE(1812), 2, + STATE(1816), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1687), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101688] = 12, - ACTIONS(3024), 1, + [101574] = 12, + ACTIONS(2974), 1, + anon_sym_RBRACK, + ACTIONS(3069), 1, anon_sym_COMMA, - ACTIONS(3026), 1, + ACTIONS(3071), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3073), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3075), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3077), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3079), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3081), 1, anon_sym_or, - ACTIONS(3089), 1, - anon_sym_RPAREN, - STATE(1843), 1, + STATE(1853), 1, sym_for_in_clause, - STATE(2254), 1, + STATE(2388), 1, aux_sym__collection_elements_repeat1, - STATE(2680), 1, + STATE(2695), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101726] = 12, - ACTIONS(3026), 1, + [101612] = 12, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3002), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3004), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3006), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3010), 1, anon_sym_or, + ACTIONS(3048), 1, + anon_sym_COMMA, ACTIONS(3091), 1, anon_sym_RPAREN, - ACTIONS(3093), 1, - anon_sym_COMMA, - STATE(1843), 1, + STATE(1850), 1, sym_for_in_clause, - STATE(2361), 1, - aux_sym_argument_list_repeat1, - STATE(2680), 1, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, + STATE(2622), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101764] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(2996), 1, - anon_sym_LBRACE, - ACTIONS(3000), 1, - anon_sym_BSLASH, - ACTIONS(3095), 1, - sym_string_end, - STATE(1812), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(2998), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1700), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101794] = 8, + [101650] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3097), 1, + ACTIONS(3093), 1, sym_string_end, - STATE(1812), 2, + STATE(1816), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1702), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101824] = 12, - ACTIONS(3024), 1, + [101680] = 12, + ACTIONS(2974), 1, + anon_sym_RBRACK, + ACTIONS(3069), 1, anon_sym_COMMA, - ACTIONS(3026), 1, + ACTIONS(3071), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3073), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3075), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3077), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3079), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3081), 1, anon_sym_or, - ACTIONS(3099), 1, - anon_sym_RPAREN, - STATE(1843), 1, + STATE(1853), 1, sym_for_in_clause, - STATE(2254), 1, + STATE(2388), 1, aux_sym__collection_elements_repeat1, - STATE(2614), 1, + STATE(2643), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101862] = 12, - ACTIONS(3026), 1, + [101718] = 9, + ACTIONS(2958), 1, + anon_sym_and, + ACTIONS(2960), 1, + anon_sym_or, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3099), 1, + anon_sym_COMMA, + STATE(2122), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3095), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3097), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + [101750] = 12, + ACTIONS(3000), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_if, + ACTIONS(3004), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3006), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3010), 1, anon_sym_or, ACTIONS(3101), 1, anon_sym_RPAREN, ACTIONS(3103), 1, anon_sym_COMMA, - STATE(1843), 1, + STATE(1850), 1, sym_for_in_clause, - STATE(2394), 1, + STATE(2274), 1, aux_sym_argument_list_repeat1, - STATE(2614), 1, + STATE(2738), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101788] = 12, + ACTIONS(3000), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_if, + ACTIONS(3004), 1, + anon_sym_async, + ACTIONS(3006), 1, + anon_sym_for, + ACTIONS(3008), 1, + anon_sym_and, + ACTIONS(3010), 1, + anon_sym_or, + ACTIONS(3048), 1, + anon_sym_COMMA, + ACTIONS(3105), 1, + anon_sym_RPAREN, + STATE(1850), 1, + sym_for_in_clause, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, + STATE(2738), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101900] = 8, + [101826] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3105), 1, + ACTIONS(3107), 1, sym_string_end, - STATE(1812), 2, + STATE(1816), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1704), 3, + STATE(1687), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101930] = 8, + [101856] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3107), 1, + ACTIONS(3109), 1, sym_string_end, - STATE(1812), 2, + STATE(1816), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1687), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101960] = 12, - ACTIONS(2965), 1, - anon_sym_RBRACK, + [101886] = 12, + ACTIONS(3000), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_if, ACTIONS(3004), 1, - anon_sym_COMMA, + anon_sym_async, ACTIONS(3006), 1, - anon_sym_as, + anon_sym_for, ACTIONS(3008), 1, + anon_sym_and, + ACTIONS(3010), 1, + anon_sym_or, + ACTIONS(3048), 1, + anon_sym_COMMA, + ACTIONS(3111), 1, + anon_sym_RPAREN, + STATE(1850), 1, + sym_for_in_clause, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, + STATE(2649), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101924] = 12, + ACTIONS(3000), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_if, + ACTIONS(3004), 1, + anon_sym_async, + ACTIONS(3006), 1, + anon_sym_for, + ACTIONS(3008), 1, + anon_sym_and, ACTIONS(3010), 1, + anon_sym_or, + ACTIONS(3048), 1, + anon_sym_COMMA, + ACTIONS(3113), 1, + anon_sym_RPAREN, + STATE(1850), 1, + sym_for_in_clause, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, + STATE(2699), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101962] = 12, + ACTIONS(2974), 1, + anon_sym_RBRACK, + ACTIONS(3069), 1, + anon_sym_COMMA, + ACTIONS(3071), 1, + anon_sym_as, + ACTIONS(3073), 1, + anon_sym_if, + ACTIONS(3075), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(3077), 1, anon_sym_for, - ACTIONS(3014), 1, + ACTIONS(3079), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(3081), 1, anon_sym_or, - STATE(1851), 1, + STATE(1853), 1, sym_for_in_clause, - STATE(2311), 1, + STATE(2388), 1, aux_sym__collection_elements_repeat1, - STATE(2687), 1, + STATE(2663), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101998] = 8, + [102000] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3109), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3115), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3118), 1, + ACTIONS(3115), 1, sym_string_end, - STATE(1812), 2, + STATE(1816), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3112), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1678), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102028] = 12, - ACTIONS(2965), 1, - anon_sym_RBRACK, - ACTIONS(3004), 1, - anon_sym_COMMA, - ACTIONS(3006), 1, + [102030] = 12, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(3002), 1, anon_sym_if, - ACTIONS(3010), 1, + ACTIONS(3004), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(3006), 1, anon_sym_for, - ACTIONS(3014), 1, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(3010), 1, anon_sym_or, - STATE(1851), 1, + ACTIONS(3048), 1, + anon_sym_COMMA, + ACTIONS(3117), 1, + anon_sym_RPAREN, + STATE(1850), 1, sym_for_in_clause, - STATE(2311), 1, + STATE(2308), 1, aux_sym__collection_elements_repeat1, - STATE(2663), 1, + STATE(2635), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102066] = 12, - ACTIONS(3026), 1, + [102068] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3012), 1, + anon_sym_LBRACE, + ACTIONS(3016), 1, + anon_sym_BSLASH, + ACTIONS(3119), 1, + sym_string_end, + STATE(1816), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3014), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1687), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [102098] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3012), 1, + anon_sym_LBRACE, + ACTIONS(3016), 1, + anon_sym_BSLASH, + ACTIONS(3121), 1, + sym_string_end, + STATE(1816), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3014), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1693), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [102128] = 12, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3002), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3004), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3006), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3010), 1, anon_sym_or, - ACTIONS(3120), 1, + ACTIONS(3046), 1, anon_sym_RPAREN, - ACTIONS(3122), 1, + ACTIONS(3123), 1, anon_sym_COMMA, - STATE(1843), 1, + STATE(1850), 1, sym_for_in_clause, - STATE(2479), 1, - aux_sym_argument_list_repeat1, - STATE(2707), 1, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, + STATE(2751), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102104] = 12, - ACTIONS(2965), 1, + [102166] = 12, + ACTIONS(2974), 1, anon_sym_RBRACK, - ACTIONS(3004), 1, + ACTIONS(3069), 1, anon_sym_COMMA, - ACTIONS(3006), 1, + ACTIONS(3071), 1, anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(3073), 1, anon_sym_if, - ACTIONS(3010), 1, + ACTIONS(3075), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(3077), 1, anon_sym_for, - ACTIONS(3014), 1, + ACTIONS(3079), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(3081), 1, anon_sym_or, - STATE(1851), 1, + STATE(1853), 1, sym_for_in_clause, - STATE(2311), 1, + STATE(2388), 1, aux_sym__collection_elements_repeat1, - STATE(2733), 1, + STATE(2623), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102142] = 8, + [102204] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3016), 1, anon_sym_BSLASH, - ACTIONS(3124), 1, + ACTIONS(3126), 1, sym_string_end, - STATE(1812), 2, + STATE(1816), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3014), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1683), 3, + STATE(1682), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102172] = 12, - ACTIONS(2965), 1, - anon_sym_RBRACK, - ACTIONS(3004), 1, - anon_sym_COMMA, - ACTIONS(3006), 1, + [102234] = 12, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(3002), 1, anon_sym_if, - ACTIONS(3010), 1, + ACTIONS(3004), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(3006), 1, anon_sym_for, - ACTIONS(3014), 1, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(3010), 1, anon_sym_or, - STATE(1851), 1, + ACTIONS(3048), 1, + anon_sym_COMMA, + ACTIONS(3128), 1, + anon_sym_RPAREN, + STATE(1850), 1, sym_for_in_clause, - STATE(2311), 1, + STATE(2308), 1, aux_sym__collection_elements_repeat1, - STATE(2723), 1, + STATE(2693), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102210] = 12, - ACTIONS(2965), 1, - anon_sym_RBRACK, - ACTIONS(3004), 1, - anon_sym_COMMA, - ACTIONS(3006), 1, + [102272] = 12, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(3002), 1, anon_sym_if, - ACTIONS(3010), 1, + ACTIONS(3004), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(3006), 1, anon_sym_for, - ACTIONS(3014), 1, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(3010), 1, anon_sym_or, - STATE(1851), 1, + ACTIONS(3130), 1, + anon_sym_RPAREN, + ACTIONS(3132), 1, + anon_sym_COMMA, + STATE(1850), 1, sym_for_in_clause, - STATE(2311), 1, - aux_sym__collection_elements_repeat1, - STATE(2754), 1, + STATE(2381), 1, + aux_sym_argument_list_repeat1, + STATE(2622), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102248] = 12, - ACTIONS(2965), 1, + [102310] = 12, + ACTIONS(2974), 1, anon_sym_RBRACK, - ACTIONS(3004), 1, + ACTIONS(3069), 1, anon_sym_COMMA, - ACTIONS(3006), 1, + ACTIONS(3071), 1, anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(3073), 1, anon_sym_if, - ACTIONS(3010), 1, + ACTIONS(3075), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(3077), 1, anon_sym_for, - ACTIONS(3014), 1, + ACTIONS(3079), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(3081), 1, anon_sym_or, - STATE(1851), 1, + STATE(1853), 1, sym_for_in_clause, - STATE(2311), 1, + STATE(2388), 1, aux_sym__collection_elements_repeat1, - STATE(2725), 1, + STATE(2756), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102286] = 12, - ACTIONS(2965), 1, + [102348] = 12, + ACTIONS(2974), 1, anon_sym_RBRACK, - ACTIONS(3004), 1, + ACTIONS(3069), 1, anon_sym_COMMA, - ACTIONS(3006), 1, + ACTIONS(3071), 1, anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(3073), 1, anon_sym_if, - ACTIONS(3010), 1, + ACTIONS(3075), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(3077), 1, anon_sym_for, - ACTIONS(3014), 1, + ACTIONS(3079), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(3081), 1, anon_sym_or, - STATE(1851), 1, + STATE(1853), 1, sym_for_in_clause, - STATE(2311), 1, + STATE(2388), 1, aux_sym__collection_elements_repeat1, - STATE(2681), 1, + STATE(2747), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102324] = 8, - ACTIONS(3), 1, + [102386] = 4, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, - anon_sym_LBRACE, - ACTIONS(3000), 1, - anon_sym_BSLASH, - ACTIONS(3126), 1, - sym_string_end, - STATE(1812), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(2998), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1706), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102354] = 9, - ACTIONS(2973), 1, + ACTIONS(2994), 8, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + [102407] = 6, + ACTIONS(3134), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(3136), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(3138), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3132), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2990), 6, + anon_sym_DOT, anon_sym_COMMA, - STATE(2213), 1, - aux_sym_assert_statement_repeat1, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + [102432] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3128), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3130), 3, + ACTIONS(2992), 6, anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, anon_sym_PIPE, - [102386] = 2, + [102457] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2078), 10, + ACTIONS(2076), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -112877,28 +112932,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102403] = 4, - ACTIONS(3134), 1, + [102474] = 6, + ACTIONS(3142), 1, + anon_sym_as, + ACTIONS(3144), 1, + anon_sym_if, + ACTIONS(3146), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3148), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 8, + ACTIONS(2990), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [102499] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2980), 6, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102424] = 2, + [102524] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 10, + ACTIONS(2076), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -112909,68 +112985,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102441] = 6, - ACTIONS(3138), 1, + [102541] = 6, + ACTIONS(3142), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3144), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3146), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3148), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2979), 6, + ACTIONS(2992), 6, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102466] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, + [102566] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2985), 6, + ACTIONS(2988), 10, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102491] = 6, - ACTIONS(3134), 1, anon_sym_and, - ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3146), 1, + [102583] = 6, + ACTIONS(2958), 1, + anon_sym_and, + ACTIONS(2960), 1, + anon_sym_or, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(3148), 1, + ACTIONS(2984), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2979), 6, + ACTIONS(3097), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [102516] = 2, + [102608] = 3, + ACTIONS(3146), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2078), 10, + ACTIONS(2986), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -112979,73 +113053,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [102533] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3146), 1, + [102627] = 8, + ACTIONS(3150), 1, + anon_sym_COMMA, + ACTIONS(3152), 1, anon_sym_as, - ACTIONS(3148), 1, + ACTIONS(3154), 1, anon_sym_if, + ACTIONS(3158), 1, + anon_sym_and, + ACTIONS(3160), 1, + anon_sym_or, + STATE(1961), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3156), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [102656] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 6, + ACTIONS(2986), 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, - [102558] = 5, - ACTIONS(3142), 1, anon_sym_and, - ACTIONS(3144), 1, anon_sym_or, - ACTIONS(3150), 1, - anon_sym_as, + [102673] = 3, + ACTIONS(3134), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 7, + ACTIONS(2986), 9, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102581] = 6, - ACTIONS(3134), 1, + anon_sym_or, + [102692] = 8, + ACTIONS(3150), 1, + anon_sym_COMMA, + ACTIONS(3152), 1, + anon_sym_as, + ACTIONS(3154), 1, + anon_sym_if, + ACTIONS(3158), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3160), 1, anon_sym_or, + STATE(1961), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3162), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [102721] = 4, ACTIONS(3146), 1, - anon_sym_as, + anon_sym_and, ACTIONS(3148), 1, - anon_sym_if, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2987), 6, + ACTIONS(2994), 8, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [102606] = 4, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, + [102742] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 8, + ACTIONS(2986), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113054,471 +113157,455 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102627] = 6, - ACTIONS(3134), 1, anon_sym_and, - ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, + [102759] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2985), 6, + ACTIONS(2988), 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, - [102652] = 2, + anon_sym_and, + anon_sym_or, + [102776] = 5, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3164), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 10, + ACTIONS(2953), 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, + [102799] = 5, + ACTIONS(3146), 1, anon_sym_and, + ACTIONS(3148), 1, anon_sym_or, - [102669] = 2, + ACTIONS(3167), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 10, + ACTIONS(2953), 7, 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, - [102686] = 3, + [102822] = 6, ACTIONS(3142), 1, + anon_sym_as, + ACTIONS(3144), 1, + anon_sym_if, + ACTIONS(3146), 1, anon_sym_and, + ACTIONS(3148), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 9, + ACTIONS(3097), 6, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_or, - [102705] = 8, - ACTIONS(3153), 1, - anon_sym_COMMA, - ACTIONS(3155), 1, + [102847] = 6, + ACTIONS(3142), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3144), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3146), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3148), 1, anon_sym_or, - STATE(1886), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 4, + ACTIONS(2980), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [102734] = 2, + anon_sym_PIPE, + [102872] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 10, + ACTIONS(2988), 9, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102751] = 6, - ACTIONS(3138), 1, + [102888] = 6, + ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3176), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2987), 6, + ACTIONS(2990), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - [102776] = 3, - ACTIONS(3134), 1, + [102912] = 3, + ACTIONS(3174), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 9, + ACTIONS(2986), 8, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_or, - [102795] = 5, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, + [102930] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 7, + ACTIONS(2986), 9, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - [102818] = 8, - ACTIONS(3153), 1, - anon_sym_COMMA, - ACTIONS(3155), 1, - anon_sym_as, - ACTIONS(3157), 1, - anon_sym_if, - ACTIONS(3161), 1, anon_sym_and, - ACTIONS(3163), 1, anon_sym_or, - STATE(1886), 1, - aux_sym_assert_statement_repeat1, + [102946] = 4, + ACTIONS(3174), 1, + anon_sym_and, + ACTIONS(3176), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3168), 4, + ACTIONS(2994), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [102847] = 6, - ACTIONS(2973), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [102966] = 5, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(3176), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(3178), 1, anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(2953), 6, anon_sym_DOT, + anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - [102872] = 6, - ACTIONS(2955), 1, - anon_sym_as, - ACTIONS(2957), 1, - anon_sym_if, - ACTIONS(2967), 1, + [102988] = 4, + ACTIONS(2976), 1, anon_sym_and, - ACTIONS(2969), 1, - anon_sym_or, + ACTIONS(3181), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2985), 5, + ACTIONS(2986), 7, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [102896] = 6, - ACTIONS(3155), 1, + anon_sym_or, + [103008] = 6, + ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3176), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2985), 5, + ACTIONS(2980), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [102920] = 5, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3170), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [103032] = 3, + ACTIONS(3181), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 6, + ACTIONS(2986), 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, - [102942] = 4, - ACTIONS(3161), 1, anon_sym_and, - ACTIONS(3163), 1, anon_sym_or, + [103050] = 4, + ACTIONS(3185), 1, + anon_sym_DOT, + STATE(1748), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 7, + ACTIONS(3183), 7, + anon_sym_import, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [102962] = 2, + anon_sym_PIPE, + [103070] = 9, + ACTIONS(2958), 1, + anon_sym_and, + ACTIONS(2960), 1, + anon_sym_or, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_if, + ACTIONS(3190), 1, + anon_sym_from, + ACTIONS(3192), 1, + anon_sym_COMMA, + STATE(2041), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 9, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(3188), 2, + sym__newline, + anon_sym_SEMI, + [103100] = 5, + ACTIONS(2976), 1, anon_sym_and, + ACTIONS(2978), 1, anon_sym_or, - sym_type_conversion, - [102978] = 3, - ACTIONS(3161), 1, - anon_sym_and, + ACTIONS(3194), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 8, + ACTIONS(2994), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - anon_sym_or, - sym_type_conversion, - [102996] = 3, - ACTIONS(3173), 1, + [103122] = 6, + ACTIONS(2964), 1, anon_sym_as, + ACTIONS(2966), 1, + anon_sym_if, + ACTIONS(2976), 1, + anon_sym_and, + ACTIONS(2978), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 8, + ACTIONS(2992), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, + [103146] = 6, + ACTIONS(3134), 1, anon_sym_and, + ACTIONS(3136), 1, anon_sym_or, - [103014] = 9, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(3138), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3177), 1, - anon_sym_from, - ACTIONS(3179), 1, - anon_sym_COMMA, - STATE(2092), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3175), 2, - sym__newline, - anon_sym_SEMI, - [103044] = 4, - ACTIONS(3183), 1, + ACTIONS(3097), 5, anon_sym_DOT, - STATE(1757), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3181), 7, - anon_sym_import, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [103064] = 5, - ACTIONS(3183), 1, - anon_sym_DOT, - ACTIONS(3185), 1, anon_sym_EQ, - STATE(1757), 1, - aux_sym_dotted_name_repeat1, + anon_sym_PIPE, + [103170] = 6, + ACTIONS(2964), 1, + anon_sym_as, + ACTIONS(2966), 1, + anon_sym_if, + ACTIONS(2976), 1, + anon_sym_and, + ACTIONS(2978), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 6, - anon_sym_LPAREN, + ACTIONS(2990), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [103086] = 6, - ACTIONS(3155), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [103194] = 6, + ACTIONS(3152), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3154), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3158), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3160), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2979), 5, + ACTIONS(3196), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103110] = 6, - ACTIONS(3155), 1, + [103218] = 6, + ACTIONS(3152), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3154), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3158), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3160), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2987), 5, + ACTIONS(2980), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103134] = 2, + [103242] = 3, + ACTIONS(3198), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2078), 9, - anon_sym_DOT, + ACTIONS(2988), 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, - [103150] = 5, - ACTIONS(2967), 1, + [103260] = 6, + ACTIONS(3170), 1, + anon_sym_as, + ACTIONS(3172), 1, + anon_sym_if, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(3176), 1, anon_sym_or, - ACTIONS(3187), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 6, + ACTIONS(3097), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [103172] = 5, - ACTIONS(2967), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [103284] = 5, + ACTIONS(3158), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(3160), 1, anon_sym_or, - ACTIONS(3190), 1, + ACTIONS(3200), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 6, + ACTIONS(2953), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - [103194] = 3, - ACTIONS(3192), 1, - anon_sym_as, + sym_type_conversion, + [103306] = 4, + ACTIONS(3158), 1, + anon_sym_and, + ACTIONS(3160), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 8, + ACTIONS(2994), 7, 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, - [103212] = 2, + sym_type_conversion, + [103326] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 9, + ACTIONS(2986), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -113528,193 +113615,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [103228] = 2, + [103342] = 3, + ACTIONS(3158), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 9, - anon_sym_DOT, + ACTIONS(2986), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_or, - [103244] = 4, - ACTIONS(3183), 1, - anon_sym_DOT, - STATE(1770), 1, - aux_sym_dotted_name_repeat1, + sym_type_conversion, + [103360] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 7, - anon_sym_import, - anon_sym_LPAREN, + ACTIONS(2076), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [103264] = 6, - ACTIONS(2955), 1, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [103376] = 6, + ACTIONS(2964), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(2966), 1, anon_sym_if, - ACTIONS(2967), 1, + ACTIONS(2976), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2978), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2979), 5, + ACTIONS(2980), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103288] = 6, - ACTIONS(2955), 1, - anon_sym_as, - ACTIONS(2957), 1, - anon_sym_if, - ACTIONS(2967), 1, + [103400] = 5, + ACTIONS(2976), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2978), 1, anon_sym_or, + ACTIONS(3203), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2987), 5, + ACTIONS(2953), 6, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103312] = 6, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, + [103422] = 4, + ACTIONS(3208), 1, + anon_sym_DOT, + STATE(1773), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2985), 5, - anon_sym_DOT, + ACTIONS(3206), 7, + anon_sym_import, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103336] = 6, - ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3130), 5, - anon_sym_DOT, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [103360] = 6, - ACTIONS(3155), 1, + [103442] = 6, + ACTIONS(3152), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3154), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3158), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3160), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 5, + ACTIONS(2990), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103384] = 5, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, - ACTIONS(3206), 1, - anon_sym_as, + [103466] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 6, + ACTIONS(2076), 9, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103406] = 4, - ACTIONS(3200), 1, anon_sym_and, - ACTIONS(3202), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2971), 7, - anon_sym_DOT, - anon_sym_COMMA, + [103482] = 3, + ACTIONS(2090), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103426] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 9, - anon_sym_DOT, + ACTIONS(2076), 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, - [103442] = 3, - ACTIONS(3200), 1, - anon_sym_and, + [103500] = 5, + ACTIONS(3208), 1, + anon_sym_DOT, + ACTIONS(3210), 1, + anon_sym_EQ, + STATE(1773), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 8, - anon_sym_DOT, + ACTIONS(3206), 6, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_or, - [103460] = 2, + [103522] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2078), 9, + ACTIONS(2988), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -113724,51 +113773,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [103476] = 6, - ACTIONS(3196), 1, + [103538] = 6, + ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3176), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 5, + ACTIONS(2992), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103500] = 6, - ACTIONS(3155), 1, + [103562] = 6, + ACTIONS(3152), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3154), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3158), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3160), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 5, + ACTIONS(3212), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103524] = 4, - ACTIONS(3213), 1, + [103586] = 4, + ACTIONS(3208), 1, anon_sym_DOT, - STATE(1770), 1, + STATE(1748), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 7, + ACTIONS(3214), 7, anon_sym_import, anon_sym_LPAREN, anon_sym_COMMA, @@ -113776,151 +113825,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [103544] = 3, - ACTIONS(2092), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2078), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [103562] = 6, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2979), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103586] = 6, - ACTIONS(3196), 1, + [103606] = 6, + ACTIONS(3152), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3154), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3158), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3160), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2987), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103610] = 4, - ACTIONS(2967), 1, - anon_sym_and, - ACTIONS(3192), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2977), 7, + ACTIONS(2992), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - anon_sym_or, - [103630] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3221), 1, - anon_sym_BSLASH, - ACTIONS(3216), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(1775), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3218), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [103653] = 7, - ACTIONS(1487), 1, - anon_sym_except, - ACTIONS(1491), 1, - anon_sym_except_STAR, - ACTIONS(3224), 1, - anon_sym_finally, - STATE(737), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(485), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(486), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [103678] = 6, - ACTIONS(3006), 1, - anon_sym_as, - ACTIONS(3008), 1, - anon_sym_if, - ACTIONS(3014), 1, - anon_sym_and, - ACTIONS(3016), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2987), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [103701] = 8, - ACTIONS(2973), 1, + sym_type_conversion, + [103630] = 8, + ACTIONS(2958), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2960), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3179), 1, + ACTIONS(3218), 1, anon_sym_COMMA, - STATE(2092), 1, + STATE(2145), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2902), 2, + ACTIONS(3216), 2, sym__newline, anon_sym_SEMI, - [103728] = 3, - ACTIONS(3173), 1, + [103657] = 3, + ACTIONS(2090), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 7, + ACTIONS(2076), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -113928,9150 +113876,9202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [103745] = 8, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, + [103674] = 3, + ACTIONS(3198), 1, anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, - ACTIONS(3228), 1, - anon_sym_COMMA, - STATE(2189), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3226), 2, - sym__newline, - anon_sym_SEMI, - [103772] = 8, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, - ACTIONS(3179), 1, + ACTIONS(2988), 7, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2092), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3230), 2, - sym__newline, - anon_sym_SEMI, - [103799] = 8, - ACTIONS(2973), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_and, - ACTIONS(2975), 1, anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, - ACTIONS(3132), 1, - anon_sym_COMMA, - STATE(2213), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3128), 2, - sym__newline, - anon_sym_SEMI, - [103826] = 5, - ACTIONS(3026), 1, - anon_sym_as, - ACTIONS(3034), 1, + [103691] = 5, + ACTIONS(3079), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3081), 1, anon_sym_or, + ACTIONS(3220), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, - anon_sym_RPAREN, + ACTIONS(2953), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [103847] = 9, - ACTIONS(3196), 1, + anon_sym_RBRACK, + [103712] = 9, + ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3176), 1, anon_sym_or, - ACTIONS(3234), 1, + ACTIONS(3223), 1, anon_sym_COMMA, - ACTIONS(3236), 1, + ACTIONS(3225), 1, anon_sym_COLON, - ACTIONS(3238), 1, + ACTIONS(3227), 1, anon_sym_RBRACK, - STATE(2474), 1, + STATE(2358), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103876] = 3, - ACTIONS(3173), 1, + [103741] = 5, + ACTIONS(2964), 1, anon_sym_as, + ACTIONS(2976), 1, + anon_sym_and, + ACTIONS(2978), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 7, - anon_sym_RPAREN, + ACTIONS(3229), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACE, + [103762] = 6, + ACTIONS(2958), 1, anon_sym_and, + ACTIONS(2960), 1, anon_sym_or, - [103893] = 5, - ACTIONS(3240), 1, - anon_sym_DOT, - ACTIONS(3242), 1, - anon_sym_EQ, - STATE(1871), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 5, - anon_sym_LPAREN, + ACTIONS(3196), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + [103785] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3231), 1, + anon_sym_async, + ACTIONS(3233), 1, + anon_sym_def, + ACTIONS(3235), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(808), 2, + sym_function_definition, + sym_class_definition, + STATE(1893), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [103810] = 6, + ACTIONS(3071), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [103914] = 6, - ACTIONS(3006), 1, - anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(3073), 1, anon_sym_if, - ACTIONS(3014), 1, + ACTIONS(3079), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(3081), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2979), 4, + ACTIONS(2980), 4, anon_sym_COMMA, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [103937] = 7, - ACTIONS(1487), 1, - anon_sym_except, - ACTIONS(1491), 1, - anon_sym_except_STAR, - ACTIONS(3224), 1, - anon_sym_finally, - STATE(785), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(562), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(563), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [103962] = 8, - ACTIONS(2973), 1, + [103833] = 8, + ACTIONS(2958), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2960), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3228), 1, + ACTIONS(3192), 1, anon_sym_COMMA, - STATE(2218), 1, + STATE(2041), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3244), 2, + ACTIONS(3156), 2, sym__newline, anon_sym_SEMI, - [103989] = 9, - ACTIONS(3196), 1, + [103860] = 7, + ACTIONS(1499), 1, + anon_sym_except, + ACTIONS(1519), 1, + anon_sym_except_STAR, + ACTIONS(3237), 1, + anon_sym_finally, + STATE(732), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(583), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(591), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [103885] = 6, + ACTIONS(3071), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3073), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3079), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3081), 1, anon_sym_or, - ACTIONS(3236), 1, - anon_sym_COLON, - ACTIONS(3246), 1, - anon_sym_COMMA, - ACTIONS(3248), 1, - anon_sym_RBRACK, - STATE(2286), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104018] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3250), 1, + ACTIONS(2992), 4, + anon_sym_COMMA, anon_sym_async, - ACTIONS(3252), 1, - anon_sym_def, - ACTIONS(3254), 1, - anon_sym_class, + anon_sym_for, + anon_sym_RBRACK, + [103908] = 5, + ACTIONS(3239), 1, + anon_sym_DOT, + ACTIONS(3241), 1, + anon_sym_EQ, + STATE(1882), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(817), 2, - sym_function_definition, - sym_class_definition, - STATE(1954), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [104043] = 6, - ACTIONS(2955), 1, + ACTIONS(3206), 5, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2957), 1, - anon_sym_if, - ACTIONS(2967), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [103929] = 5, + ACTIONS(2964), 1, + anon_sym_as, + ACTIONS(2976), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2978), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3256), 4, + ACTIONS(3229), 5, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [104066] = 3, - ACTIONS(2092), 1, + [103950] = 5, + ACTIONS(2964), 1, anon_sym_as, + ACTIONS(2976), 1, + anon_sym_and, + ACTIONS(2978), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2078), 7, + ACTIONS(3229), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [104083] = 5, - ACTIONS(2955), 1, + anon_sym_RBRACE, + [103971] = 6, + ACTIONS(3071), 1, anon_sym_as, - ACTIONS(2967), 1, + ACTIONS(3073), 1, + anon_sym_if, + ACTIONS(3079), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(3081), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, + ACTIONS(2990), 4, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [104104] = 9, - ACTIONS(3196), 1, + anon_sym_RBRACK, + [103994] = 6, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3002), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3010), 1, anon_sym_or, - ACTIONS(3236), 1, - anon_sym_COLON, - ACTIONS(3258), 1, - anon_sym_COMMA, - ACTIONS(3260), 1, - anon_sym_RBRACK, - STATE(2463), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104133] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3262), 1, + ACTIONS(2980), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_async, - ACTIONS(3264), 1, - anon_sym_def, - ACTIONS(3266), 1, - anon_sym_class, + anon_sym_for, + [104017] = 5, + ACTIONS(3000), 1, + anon_sym_as, + ACTIONS(3008), 1, + anon_sym_and, + ACTIONS(3010), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(795), 2, - sym_function_definition, - sym_class_definition, - STATE(1954), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [104158] = 9, - ACTIONS(3196), 1, + ACTIONS(3229), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [104038] = 9, + ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3176), 1, anon_sym_or, - ACTIONS(3236), 1, + ACTIONS(3225), 1, anon_sym_COLON, - ACTIONS(3268), 1, + ACTIONS(3243), 1, anon_sym_COMMA, - ACTIONS(3270), 1, + ACTIONS(3245), 1, anon_sym_RBRACK, - STATE(2328), 1, + STATE(2475), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104187] = 6, - ACTIONS(3026), 1, + [104067] = 5, + ACTIONS(3247), 1, + anon_sym_DOT, + ACTIONS(3249), 1, + anon_sym_EQ, + STATE(1884), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3206), 5, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3028), 1, - anon_sym_if, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, + anon_sym_PIPE, + anon_sym_RBRACE, + [104088] = 5, + ACTIONS(3251), 1, + anon_sym_DOT, + ACTIONS(3253), 1, + anon_sym_EQ, + STATE(1848), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2985), 4, + ACTIONS(3206), 5, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [104210] = 7, - ACTIONS(1541), 1, - anon_sym_except, - ACTIONS(1545), 1, - anon_sym_except_STAR, - ACTIONS(3272), 1, - anon_sym_finally, - STATE(803), 1, - sym_finally_clause, + anon_sym_as, + anon_sym_PIPE, + [104109] = 3, + ACTIONS(2090), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(590), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(591), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [104235] = 9, - ACTIONS(3196), 1, + ACTIONS(2076), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [104126] = 9, + ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3176), 1, anon_sym_or, - ACTIONS(3236), 1, + ACTIONS(3225), 1, anon_sym_COLON, - ACTIONS(3274), 1, + ACTIONS(3255), 1, anon_sym_COMMA, - ACTIONS(3276), 1, + ACTIONS(3257), 1, anon_sym_RBRACK, - STATE(2364), 1, + STATE(2472), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104264] = 5, - ACTIONS(3006), 1, - anon_sym_as, - ACTIONS(3014), 1, + [104155] = 8, + ACTIONS(2958), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(2960), 1, anon_sym_or, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_if, + ACTIONS(3099), 1, + anon_sym_COMMA, + STATE(2122), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [104285] = 5, - ACTIONS(3006), 1, + ACTIONS(3095), 2, + sym__newline, + anon_sym_SEMI, + [104182] = 6, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3002), 1, + anon_sym_if, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(3010), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, + ACTIONS(2990), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [104306] = 9, - ACTIONS(3196), 1, + [104205] = 9, + ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3176), 1, anon_sym_or, - ACTIONS(3236), 1, + ACTIONS(3225), 1, anon_sym_COLON, - ACTIONS(3278), 1, + ACTIONS(3259), 1, anon_sym_COMMA, - ACTIONS(3280), 1, + ACTIONS(3261), 1, anon_sym_RBRACK, - STATE(2342), 1, + STATE(2448), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104335] = 5, - ACTIONS(2955), 1, + [104234] = 5, + ACTIONS(3071), 1, anon_sym_as, - ACTIONS(2967), 1, + ACTIONS(3079), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(3081), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, + ACTIONS(3229), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [104356] = 6, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, + anon_sym_RBRACK, + [104255] = 7, + ACTIONS(1487), 1, + anon_sym_except, + ACTIONS(1491), 1, + anon_sym_except_STAR, + ACTIONS(3263), 1, + anon_sym_finally, + STATE(838), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - [104379] = 3, - ACTIONS(2092), 1, + STATE(525), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(526), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [104280] = 5, + ACTIONS(3000), 1, anon_sym_as, + ACTIONS(3008), 1, + anon_sym_and, + ACTIONS(3010), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2078), 7, + ACTIONS(3229), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + [104301] = 5, + ACTIONS(3071), 1, + anon_sym_as, + ACTIONS(3079), 1, anon_sym_and, + ACTIONS(3081), 1, anon_sym_or, - [104396] = 5, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, - ACTIONS(3190), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, - anon_sym_RPAREN, + ACTIONS(3229), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104417] = 3, - ACTIONS(3192), 1, + anon_sym_RBRACK, + [104322] = 5, + ACTIONS(3071), 1, anon_sym_as, + ACTIONS(3079), 1, + anon_sym_and, + ACTIONS(3081), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 7, - anon_sym_RPAREN, + ACTIONS(3229), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACK, + [104343] = 9, + ACTIONS(3170), 1, + anon_sym_as, + ACTIONS(3172), 1, + anon_sym_if, + ACTIONS(3174), 1, anon_sym_and, + ACTIONS(3176), 1, anon_sym_or, - [104434] = 4, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3192), 1, + ACTIONS(3225), 1, + anon_sym_COLON, + ACTIONS(3265), 1, + anon_sym_COMMA, + ACTIONS(3267), 1, + anon_sym_RBRACK, + STATE(2425), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104372] = 7, + ACTIONS(1487), 1, + anon_sym_except, + ACTIONS(1491), 1, + anon_sym_except_STAR, + ACTIONS(3263), 1, + anon_sym_finally, + STATE(734), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(585), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(587), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [104397] = 6, + ACTIONS(2964), 1, anon_sym_as, + ACTIONS(2966), 1, + anon_sym_if, + ACTIONS(2976), 1, + anon_sym_and, + ACTIONS(2978), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 6, - anon_sym_RPAREN, + ACTIONS(3269), 4, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_or, - [104453] = 9, - ACTIONS(3196), 1, + anon_sym_RBRACE, + [104420] = 9, + ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3176), 1, anon_sym_or, - ACTIONS(3236), 1, + ACTIONS(3225), 1, anon_sym_COLON, - ACTIONS(3282), 1, + ACTIONS(3271), 1, anon_sym_COMMA, - ACTIONS(3284), 1, + ACTIONS(3273), 1, anon_sym_RBRACK, - STATE(2397), 1, + STATE(2332), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104482] = 5, - ACTIONS(3286), 1, - anon_sym_DOT, - ACTIONS(3288), 1, - anon_sym_EQ, - STATE(1840), 1, - aux_sym_dotted_name_repeat1, + [104449] = 5, + ACTIONS(3079), 1, + anon_sym_and, + ACTIONS(3081), 1, + anon_sym_or, + ACTIONS(3194), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2994), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [104503] = 6, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [104470] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3294), 1, + ACTIONS(3280), 1, anon_sym_BSLASH, - ACTIONS(3290), 2, + ACTIONS(3275), 2, sym_string_end, anon_sym_LBRACE, - STATE(1775), 2, + STATE(1811), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3292), 3, + ACTIONS(3277), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - [104526] = 6, - ACTIONS(3026), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_if, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2987), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [104549] = 9, - ACTIONS(3196), 1, + [104493] = 9, + ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3176), 1, anon_sym_or, - ACTIONS(3236), 1, + ACTIONS(3225), 1, anon_sym_COLON, - ACTIONS(3296), 1, + ACTIONS(3283), 1, anon_sym_COMMA, - ACTIONS(3298), 1, + ACTIONS(3285), 1, anon_sym_RBRACK, - STATE(2322), 1, + STATE(2352), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104578] = 8, - ACTIONS(2973), 1, + [104522] = 8, + ACTIONS(2958), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2960), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3179), 1, + ACTIONS(3289), 1, anon_sym_COMMA, - STATE(2092), 1, - aux_sym_assert_statement_repeat1, + STATE(2127), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3300), 2, + ACTIONS(3287), 2, sym__newline, anon_sym_SEMI, - [104605] = 6, - ACTIONS(3006), 1, - anon_sym_as, - ACTIONS(3008), 1, - anon_sym_if, - ACTIONS(3014), 1, - anon_sym_and, - ACTIONS(3016), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2985), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [104628] = 9, - ACTIONS(3196), 1, + [104549] = 9, + ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3176), 1, anon_sym_or, - ACTIONS(3236), 1, + ACTIONS(3225), 1, anon_sym_COLON, - ACTIONS(3302), 1, + ACTIONS(3291), 1, anon_sym_COMMA, - ACTIONS(3304), 1, + ACTIONS(3293), 1, anon_sym_RBRACK, - STATE(2409), 1, + STATE(2368), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104657] = 4, - ACTIONS(327), 1, - sym_string_start, + [104578] = 5, + ACTIONS(3008), 1, + anon_sym_and, + ACTIONS(3010), 1, + anon_sym_or, + ACTIONS(3295), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(993), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3306), 5, + ACTIONS(2953), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [104676] = 2, + anon_sym_async, + anon_sym_for, + [104599] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3302), 1, + anon_sym_BSLASH, + ACTIONS(3298), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(1811), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3300), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [104622] = 3, + ACTIONS(3181), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 8, - anon_sym_import, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2986), 7, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [104691] = 9, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3200), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_and, - ACTIONS(3202), 1, anon_sym_or, - ACTIONS(3236), 1, - anon_sym_COLON, - ACTIONS(3308), 1, - anon_sym_COMMA, - ACTIONS(3310), 1, - anon_sym_RBRACK, - STATE(2415), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [104720] = 5, - ACTIONS(3014), 1, + [104639] = 5, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(3010), 1, anon_sym_or, - ACTIONS(3312), 1, + ACTIONS(3194), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 5, + ACTIONS(2994), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [104741] = 7, - ACTIONS(1541), 1, - anon_sym_except, - ACTIONS(1545), 1, - anon_sym_except_STAR, - ACTIONS(3272), 1, - anon_sym_finally, - STATE(819), 1, - sym_finally_clause, + [104660] = 3, + ACTIONS(3181), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(594), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(595), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [104766] = 5, - ACTIONS(3014), 1, + ACTIONS(2986), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_and, - ACTIONS(3016), 1, anon_sym_or, - ACTIONS(3190), 1, + [104677] = 3, + ACTIONS(3198), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, + ACTIONS(2988), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [104787] = 5, - ACTIONS(2955), 1, - anon_sym_as, - ACTIONS(2967), 1, anon_sym_and, - ACTIONS(2969), 1, anon_sym_or, + [104694] = 4, + ACTIONS(3008), 1, + anon_sym_and, + ACTIONS(3181), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, + ACTIONS(2986), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [104808] = 3, - ACTIONS(3192), 1, + anon_sym_or, + [104713] = 4, + ACTIONS(3079), 1, + anon_sym_and, + ACTIONS(3181), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 7, + ACTIONS(2986), 6, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - anon_sym_and, anon_sym_or, - [104825] = 4, - ACTIONS(3014), 1, - anon_sym_and, - ACTIONS(3192), 1, + [104732] = 5, + ACTIONS(3000), 1, anon_sym_as, + ACTIONS(3008), 1, + anon_sym_and, + ACTIONS(3010), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 6, + ACTIONS(3229), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - anon_sym_or, - [104844] = 5, - ACTIONS(3026), 1, + [104753] = 9, + ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3172), 1, + anon_sym_if, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3176), 1, anon_sym_or, + ACTIONS(3225), 1, + anon_sym_COLON, + ACTIONS(3304), 1, + anon_sym_COMMA, + ACTIONS(3306), 1, + anon_sym_RBRACK, + STATE(2384), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, - anon_sym_RPAREN, + [104782] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3183), 8, + anon_sym_import, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [104797] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3308), 1, anon_sym_async, - anon_sym_for, - [104865] = 8, - ACTIONS(2973), 1, + ACTIONS(3310), 1, + anon_sym_def, + ACTIONS(3312), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(743), 2, + sym_function_definition, + sym_class_definition, + STATE(1893), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [104822] = 8, + ACTIONS(2958), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2960), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3317), 1, + ACTIONS(3192), 1, anon_sym_COMMA, - STATE(2185), 1, - aux_sym_print_statement_repeat1, + STATE(2041), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3315), 2, + ACTIONS(2921), 2, sym__newline, anon_sym_SEMI, - [104892] = 8, - ACTIONS(2973), 1, + [104849] = 8, + ACTIONS(2958), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2960), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3179), 1, + ACTIONS(3218), 1, anon_sym_COMMA, - STATE(2092), 1, + STATE(2128), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 2, + ACTIONS(3314), 2, sym__newline, anon_sym_SEMI, - [104919] = 5, - ACTIONS(3026), 1, + [104876] = 6, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3002), 1, + anon_sym_if, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3010), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, + ACTIONS(2992), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - [104940] = 5, - ACTIONS(3006), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_and, - ACTIONS(3016), 1, - anon_sym_or, + [104899] = 4, + ACTIONS(324), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, + STATE(995), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3316), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [104961] = 6, - ACTIONS(3026), 1, + anon_sym_COLON, + anon_sym_PIPE, + [104918] = 8, + ACTIONS(2958), 1, + anon_sym_and, + ACTIONS(2960), 1, + anon_sym_or, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3034), 1, + ACTIONS(3192), 1, + anon_sym_COMMA, + STATE(2041), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3318), 2, + sym__newline, + anon_sym_SEMI, + [104945] = 8, + ACTIONS(2958), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(2960), 1, anon_sym_or, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_if, + ACTIONS(3192), 1, + anon_sym_COMMA, + STATE(2041), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2979), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [104984] = 5, - ACTIONS(3319), 1, - anon_sym_DOT, - ACTIONS(3321), 1, - anon_sym_EQ, - STATE(1838), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3320), 2, + sym__newline, + anon_sym_SEMI, + [104972] = 7, + ACTIONS(1499), 1, + anon_sym_except, + ACTIONS(1519), 1, + anon_sym_except_STAR, + ACTIONS(3237), 1, + anon_sym_finally, + STATE(821), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(565), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(571), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [104997] = 9, + ACTIONS(3170), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [105005] = 5, - ACTIONS(3034), 1, + ACTIONS(3172), 1, + anon_sym_if, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3176), 1, anon_sym_or, - ACTIONS(3323), 1, - anon_sym_as, + ACTIONS(3225), 1, + anon_sym_COLON, + ACTIONS(3322), 1, + anon_sym_COMMA, + ACTIONS(3324), 1, + anon_sym_RBRACK, + STATE(2280), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, + [105026] = 8, + ACTIONS(2970), 1, anon_sym_async, + ACTIONS(2972), 1, anon_sym_for, - [105026] = 8, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, ACTIONS(3326), 1, anon_sym_COMMA, ACTIONS(3328), 1, - anon_sym_COLON, - STATE(2239), 1, - aux_sym_assert_statement_repeat1, + anon_sym_RBRACE, + STATE(1878), 1, + sym_for_in_clause, + STATE(2354), 1, + aux_sym_dictionary_repeat1, + STATE(2655), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, [105052] = 8, - ACTIONS(2961), 1, + ACTIONS(2970), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2972), 1, anon_sym_for, ACTIONS(3330), 1, anon_sym_COMMA, ACTIONS(3332), 1, anon_sym_RBRACE, - STATE(1865), 1, + STATE(1878), 1, sym_for_in_clause, - STATE(2386), 1, + STATE(2439), 1, aux_sym_dictionary_repeat1, - STATE(2619), 1, + STATE(2630), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, [105078] = 8, - ACTIONS(3159), 1, - anon_sym_RBRACK, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, + ACTIONS(2970), 1, + anon_sym_async, + ACTIONS(2972), 1, + anon_sym_for, ACTIONS(3334), 1, anon_sym_COMMA, - STATE(2477), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105104] = 4, - ACTIONS(3319), 1, - anon_sym_DOT, - STATE(1849), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3194), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [105122] = 8, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3326), 1, - anon_sym_COMMA, ACTIONS(3336), 1, - anon_sym_COLON, - STATE(2239), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105148] = 4, - ACTIONS(3286), 1, - anon_sym_DOT, - STATE(1864), 1, - aux_sym_dotted_name_repeat1, + anon_sym_RBRACE, + STATE(1878), 1, + sym_for_in_clause, + STATE(2259), 1, + aux_sym_dictionary_repeat1, + STATE(2744), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [105166] = 4, + [105104] = 7, + ACTIONS(2714), 1, + sym_identifier, ACTIONS(3338), 1, anon_sym_DOT, - STATE(1841), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3211), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [105184] = 4, - ACTIONS(729), 1, - sym_string_start, + ACTIONS(3340), 1, + anon_sym___future__, + STATE(2113), 1, + aux_sym_import_prefix_repeat1, + STATE(2246), 1, + sym_import_prefix, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(995), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3306), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [105202] = 6, - ACTIONS(3030), 1, + STATE(2768), 2, + sym_relative_import, + sym_dotted_name, + [105128] = 6, + ACTIONS(2970), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(2972), 1, anon_sym_for, - ACTIONS(3341), 1, - anon_sym_RPAREN, - ACTIONS(3343), 1, + ACTIONS(3342), 1, anon_sym_if, + ACTIONS(3344), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1874), 3, + STATE(1842), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105224] = 7, - ACTIONS(3196), 1, + [105150] = 7, + ACTIONS(1403), 1, + anon_sym_COLON, + ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3176), 1, anon_sym_or, - ACTIONS(3236), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3345), 2, + ACTIONS(1401), 2, anon_sym_COMMA, anon_sym_RBRACK, - [105248] = 8, - ACTIONS(2961), 1, + [105174] = 5, + ACTIONS(2964), 1, + anon_sym_as, + ACTIONS(2976), 1, + anon_sym_and, + ACTIONS(2978), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3346), 4, + anon_sym_if, anon_sym_async, - ACTIONS(2963), 1, anon_sym_for, - ACTIONS(3347), 1, - anon_sym_COMMA, - ACTIONS(3349), 1, anon_sym_RBRACE, - STATE(1865), 1, + [105194] = 6, + ACTIONS(3348), 1, + anon_sym_if, + ACTIONS(3351), 1, + anon_sym_async, + ACTIONS(3354), 1, + anon_sym_for, + ACTIONS(3357), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1842), 3, sym_for_in_clause, - STATE(2313), 1, - aux_sym_dictionary_repeat1, - STATE(2621), 1, - sym__comprehension_clauses, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105216] = 4, + ACTIONS(3359), 1, + anon_sym_DOT, + STATE(1843), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105274] = 3, + ACTIONS(3183), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [105234] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3351), 2, + ACTIONS(3364), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3306), 5, + ACTIONS(3362), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [105290] = 4, - ACTIONS(704), 1, + [105250] = 8, + ACTIONS(3366), 1, + sym_identifier, + ACTIONS(3368), 1, + anon_sym_LPAREN, + ACTIONS(3370), 1, + anon_sym_STAR, + STATE(2082), 1, + sym_dotted_name, + STATE(2112), 1, + sym_aliased_import, + STATE(2499), 1, + sym__import_list, + STATE(2578), 1, + sym_wildcard_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105276] = 4, + ACTIONS(797), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(984), 2, + STATE(1054), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3306), 4, + ACTIONS(3316), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [105308] = 8, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3146), 1, + [105294] = 8, + ACTIONS(3156), 1, + anon_sym_RBRACK, + ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3148), 1, + ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3159), 1, - anon_sym_RPAREN, - ACTIONS(3353), 1, + ACTIONS(3174), 1, + anon_sym_and, + ACTIONS(3176), 1, + anon_sym_or, + ACTIONS(3372), 1, anon_sym_COMMA, - STATE(2425), 1, + STATE(2295), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105334] = 4, - ACTIONS(3355), 1, + [105320] = 4, + ACTIONS(3251), 1, anon_sym_DOT, - STATE(1849), 1, + STATE(1843), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 5, + ACTIONS(3214), 5, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [105352] = 7, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, + [105338] = 6, + ACTIONS(2958), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(2960), 1, anon_sym_or, - ACTIONS(3358), 1, - anon_sym_COLON, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1425), 2, + ACTIONS(3374), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - [105376] = 6, - ACTIONS(3010), 1, + [105360] = 6, + ACTIONS(3004), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(3006), 1, anon_sym_for, - ACTIONS(3341), 1, - anon_sym_RBRACK, - ACTIONS(3360), 1, + ACTIONS(3376), 1, + anon_sym_RPAREN, + ACTIONS(3378), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1861), 3, + STATE(1868), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105398] = 5, - ACTIONS(3026), 1, - anon_sym_as, - ACTIONS(3034), 1, + [105382] = 8, + ACTIONS(3134), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3362), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [105418] = 7, - ACTIONS(1409), 1, - anon_sym_COLON, - ACTIONS(3196), 1, + ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, + ACTIONS(3380), 1, + anon_sym_COMMA, + ACTIONS(3382), 1, + anon_sym_COLON, + STATE(2319), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1407), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [105442] = 4, - ACTIONS(3286), 1, + [105408] = 4, + ACTIONS(3247), 1, anon_sym_DOT, - STATE(1840), 1, + STATE(1884), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 5, + ACTIONS(3206), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [105460] = 8, - ACTIONS(2961), 1, + anon_sym_RBRACE, + [105426] = 6, + ACTIONS(3075), 1, + anon_sym_async, + ACTIONS(3077), 1, + anon_sym_for, + ACTIONS(3376), 1, + anon_sym_RBRACK, + ACTIONS(3384), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1879), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105448] = 8, + ACTIONS(2970), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2972), 1, anon_sym_for, - ACTIONS(3364), 1, + ACTIONS(3386), 1, anon_sym_COMMA, - ACTIONS(3366), 1, + ACTIONS(3388), 1, anon_sym_RBRACE, - STATE(1865), 1, + STATE(1878), 1, sym_for_in_clause, - STATE(2421), 1, + STATE(2402), 1, aux_sym_dictionary_repeat1, - STATE(2744), 1, + STATE(2625), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105486] = 8, - ACTIONS(3138), 1, + [105474] = 5, + ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3010), 1, anon_sym_or, - ACTIONS(3368), 1, - anon_sym_COMMA, - ACTIONS(3370), 1, - anon_sym_COLON, - STATE(2399), 1, - aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105512] = 8, + ACTIONS(3346), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [105494] = 6, + ACTIONS(3357), 1, + anon_sym_RPAREN, + ACTIONS(3390), 1, + anon_sym_if, + ACTIONS(3393), 1, + anon_sym_async, + ACTIONS(3396), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1856), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105516] = 8, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, ACTIONS(3138), 1, anon_sym_as, ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3326), 1, + ACTIONS(3380), 1, anon_sym_COMMA, - ACTIONS(3372), 1, + ACTIONS(3399), 1, anon_sym_COLON, - STATE(2239), 1, + STATE(2319), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105538] = 4, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1111), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3306), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [105556] = 8, - ACTIONS(2961), 1, + [105542] = 8, + ACTIONS(2970), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2972), 1, anon_sym_for, - ACTIONS(3374), 1, + ACTIONS(3401), 1, anon_sym_COMMA, - ACTIONS(3376), 1, + ACTIONS(3403), 1, anon_sym_RBRACE, - STATE(1865), 1, + STATE(1878), 1, sym_for_in_clause, - STATE(2245), 1, + STATE(2493), 1, aux_sym_dictionary_repeat1, - STATE(2678), 1, + STATE(2755), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105582] = 6, - ACTIONS(2973), 1, + [105568] = 6, + ACTIONS(2958), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2960), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(2984), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3378), 3, + ACTIONS(3405), 3, sym__newline, anon_sym_SEMI, anon_sym_COMMA, - [105604] = 6, - ACTIONS(3010), 1, - anon_sym_async, - ACTIONS(3012), 1, - anon_sym_for, - ACTIONS(3360), 1, + [105590] = 7, + ACTIONS(3170), 1, + anon_sym_as, + ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3380), 1, + ACTIONS(3174), 1, + anon_sym_and, + ACTIONS(3176), 1, + anon_sym_or, + ACTIONS(3225), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3407), 2, + anon_sym_COMMA, anon_sym_RBRACK, + [105614] = 7, + ACTIONS(3170), 1, + anon_sym_as, + ACTIONS(3172), 1, + anon_sym_if, + ACTIONS(3174), 1, + anon_sym_and, + ACTIONS(3176), 1, + anon_sym_or, + ACTIONS(3409), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1883), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105626] = 8, - ACTIONS(2961), 1, - anon_sym_async, - ACTIONS(2963), 1, - anon_sym_for, - ACTIONS(3382), 1, + ACTIONS(1435), 2, anon_sym_COMMA, - ACTIONS(3384), 1, - anon_sym_RBRACE, - STATE(1865), 1, - sym_for_in_clause, - STATE(2352), 1, - aux_sym_dictionary_repeat1, - STATE(2694), 1, - sym__comprehension_clauses, + anon_sym_RBRACK, + [105638] = 4, + ACTIONS(3411), 1, + anon_sym_DOT, + STATE(1862), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105652] = 8, + ACTIONS(3183), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [105656] = 8, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, ACTIONS(3138), 1, anon_sym_as, ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3326), 1, + ACTIONS(3414), 1, anon_sym_COMMA, - ACTIONS(3386), 1, + ACTIONS(3416), 1, anon_sym_COLON, - STATE(2239), 1, - aux_sym_assert_statement_repeat1, + STATE(2398), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105678] = 4, - ACTIONS(3388), 1, + [105682] = 4, + ACTIONS(3239), 1, anon_sym_DOT, - STATE(1864), 1, + STATE(1882), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 5, + ACTIONS(3206), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [105700] = 4, + ACTIONS(3418), 1, + anon_sym_DOT, + STATE(1865), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3183), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [105696] = 6, - ACTIONS(2961), 1, - anon_sym_async, - ACTIONS(2963), 1, - anon_sym_for, - ACTIONS(3341), 1, anon_sym_RBRACE, - ACTIONS(3391), 1, - anon_sym_if, + [105718] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1872), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105718] = 8, - ACTIONS(2961), 1, + ACTIONS(3421), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3316), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [105734] = 8, + ACTIONS(2970), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2972), 1, anon_sym_for, - ACTIONS(3393), 1, + ACTIONS(3423), 1, anon_sym_COMMA, - ACTIONS(3395), 1, + ACTIONS(3425), 1, anon_sym_RBRACE, - STATE(1865), 1, + STATE(1878), 1, sym_for_in_clause, - STATE(2271), 1, + STATE(2456), 1, aux_sym_dictionary_repeat1, - STATE(2728), 1, + STATE(2709), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105744] = 6, - ACTIONS(3397), 1, - anon_sym_RPAREN, - ACTIONS(3399), 1, - anon_sym_if, - ACTIONS(3402), 1, + [105760] = 6, + ACTIONS(3004), 1, anon_sym_async, - ACTIONS(3405), 1, + ACTIONS(3006), 1, anon_sym_for, + ACTIONS(3344), 1, + anon_sym_RPAREN, + ACTIONS(3378), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1867), 3, + STATE(1856), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105766] = 8, + [105782] = 8, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, ACTIONS(3138), 1, anon_sym_as, ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3408), 1, + ACTIONS(3380), 1, anon_sym_COMMA, - ACTIONS(3410), 1, + ACTIONS(3427), 1, anon_sym_COLON, - STATE(2483), 1, - aux_sym_match_statement_repeat1, + STATE(2319), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105792] = 3, + [105808] = 8, + ACTIONS(2970), 1, + anon_sym_async, + ACTIONS(2972), 1, + anon_sym_for, + ACTIONS(3429), 1, + anon_sym_COMMA, + ACTIONS(3431), 1, + anon_sym_RBRACE, + STATE(1878), 1, + sym_for_in_clause, + STATE(2363), 1, + aux_sym_dictionary_repeat1, + STATE(2639), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3414), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3412), 5, - anon_sym_COMMA, + [105834] = 8, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, + ACTIONS(3380), 1, + anon_sym_COMMA, + ACTIONS(3433), 1, anon_sym_COLON, - anon_sym_PIPE, - [105808] = 4, - ACTIONS(3319), 1, - anon_sym_DOT, - STATE(1838), 1, - aux_sym_dotted_name_repeat1, + STATE(2319), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + [105860] = 6, + ACTIONS(3357), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [105826] = 4, - ACTIONS(3240), 1, + ACTIONS(3435), 1, + anon_sym_if, + ACTIONS(3438), 1, + anon_sym_async, + ACTIONS(3441), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1872), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105882] = 4, + ACTIONS(3251), 1, anon_sym_DOT, - STATE(1841), 1, + STATE(1848), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 5, + ACTIONS(3206), 5, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [105844] = 6, - ACTIONS(2961), 1, + [105900] = 5, + ACTIONS(3071), 1, + anon_sym_as, + ACTIONS(3079), 1, + anon_sym_and, + ACTIONS(3081), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3346), 4, + anon_sym_if, anon_sym_async, - ACTIONS(2963), 1, anon_sym_for, - ACTIONS(3380), 1, - anon_sym_RBRACE, - ACTIONS(3391), 1, + anon_sym_RBRACK, + [105920] = 8, + ACTIONS(3142), 1, + anon_sym_as, + ACTIONS(3144), 1, anon_sym_if, + ACTIONS(3146), 1, + anon_sym_and, + ACTIONS(3148), 1, + anon_sym_or, + ACTIONS(3156), 1, + anon_sym_RPAREN, + ACTIONS(3444), 1, + anon_sym_COMMA, + STATE(2271), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1875), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105866] = 7, - ACTIONS(2714), 1, - sym_identifier, - ACTIONS(3416), 1, - anon_sym_DOT, - ACTIONS(3418), 1, - anon_sym___future__, - STATE(2205), 1, - aux_sym_import_prefix_repeat1, - STATE(2363), 1, - sym_import_prefix, + [105946] = 8, + ACTIONS(3050), 1, + anon_sym_RPAREN, + ACTIONS(3052), 1, + anon_sym_COMMA, + ACTIONS(3142), 1, + anon_sym_as, + ACTIONS(3144), 1, + anon_sym_if, + ACTIONS(3146), 1, + anon_sym_and, + ACTIONS(3148), 1, + anon_sym_or, + STATE(2276), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2740), 2, - sym_relative_import, - sym_dotted_name, - [105890] = 6, - ACTIONS(3030), 1, + [105972] = 4, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(988), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3316), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [105990] = 6, + ACTIONS(2970), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(2972), 1, anon_sym_for, - ACTIONS(3343), 1, + ACTIONS(3342), 1, anon_sym_if, - ACTIONS(3380), 1, - anon_sym_RPAREN, + ACTIONS(3376), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1867), 3, + STATE(1839), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105912] = 6, - ACTIONS(3397), 1, - anon_sym_RBRACE, - ACTIONS(3420), 1, - anon_sym_if, - ACTIONS(3423), 1, + [106012] = 6, + ACTIONS(3075), 1, anon_sym_async, - ACTIONS(3426), 1, + ACTIONS(3077), 1, anon_sym_for, + ACTIONS(3344), 1, + anon_sym_RBRACK, + ACTIONS(3384), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1875), 3, + STATE(1872), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105934] = 4, - ACTIONS(3240), 1, - anon_sym_DOT, - STATE(1871), 1, - aux_sym_dotted_name_repeat1, + [106034] = 4, + ACTIONS(704), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 5, - anon_sym_LPAREN, + STATE(983), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3316), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [105952] = 6, - ACTIONS(2973), 1, + [106052] = 8, + ACTIONS(3134), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(3136), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(3138), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(3140), 1, anon_sym_if, + ACTIONS(3446), 1, + anon_sym_COMMA, + ACTIONS(3448), 1, + anon_sym_COLON, + STATE(2345), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3429), 3, - sym__newline, - anon_sym_SEMI, + [106078] = 4, + ACTIONS(3239), 1, + anon_sym_DOT, + STATE(1862), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3214), 5, + anon_sym_LPAREN, anon_sym_COMMA, - [105974] = 8, - ACTIONS(2961), 1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [106096] = 8, + ACTIONS(2970), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2972), 1, anon_sym_for, - ACTIONS(3431), 1, + ACTIONS(3450), 1, anon_sym_COMMA, - ACTIONS(3433), 1, + ACTIONS(3452), 1, anon_sym_RBRACE, - STATE(1865), 1, + STATE(1878), 1, sym_for_in_clause, - STATE(2462), 1, + STATE(2258), 1, aux_sym_dictionary_repeat1, - STATE(2741), 1, + STATE(2739), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106000] = 8, - ACTIONS(3038), 1, - anon_sym_RPAREN, - ACTIONS(3040), 1, + [106122] = 4, + ACTIONS(3247), 1, + anon_sym_DOT, + STATE(1865), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3214), 5, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [106140] = 7, ACTIONS(3134), 1, anon_sym_and, ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, + ACTIONS(3140), 1, anon_sym_if, - STATE(2335), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3454), 1, + anon_sym_COMMA, + ACTIONS(3456), 1, + anon_sym_as, + ACTIONS(3458), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106026] = 5, - ACTIONS(2955), 1, + [106163] = 6, + ACTIONS(3142), 1, anon_sym_as, - ACTIONS(2967), 1, + ACTIONS(3144), 1, + anon_sym_if, + ACTIONS(3146), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(3148), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3362), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [106046] = 8, - ACTIONS(3435), 1, - sym_identifier, - ACTIONS(3437), 1, - anon_sym_LPAREN, - ACTIONS(3439), 1, - anon_sym_STAR, - STATE(2077), 1, - sym_dotted_name, - STATE(2149), 1, - sym_aliased_import, - STATE(2530), 1, - sym__import_list, - STATE(2532), 1, - sym_wildcard_import, - ACTIONS(3), 2, + ACTIONS(3460), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [106184] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [106072] = 5, - ACTIONS(3006), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_and, - ACTIONS(3016), 1, - anon_sym_or, + ACTIONS(3464), 1, + anon_sym_BSLASH, + ACTIONS(3462), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106201] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3362), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [106092] = 6, - ACTIONS(3397), 1, - anon_sym_RBRACK, - ACTIONS(3441), 1, + ACTIONS(1637), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106214] = 6, + ACTIONS(3152), 1, + anon_sym_as, + ACTIONS(3154), 1, anon_sym_if, - ACTIONS(3444), 1, - anon_sym_async, - ACTIONS(3447), 1, - anon_sym_for, + ACTIONS(3158), 1, + anon_sym_and, + ACTIONS(3160), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1883), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106114] = 8, - ACTIONS(2961), 1, - anon_sym_async, - ACTIONS(2963), 1, - anon_sym_for, - ACTIONS(3450), 1, + ACTIONS(3269), 2, anon_sym_COMMA, - ACTIONS(3452), 1, anon_sym_RBRACE, - STATE(1865), 1, - sym_for_in_clause, - STATE(2319), 1, - aux_sym_dictionary_repeat1, - STATE(2673), 1, - sym__comprehension_clauses, + [106235] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106140] = 4, + ACTIONS(3466), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106248] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3456), 1, + ACTIONS(3470), 1, anon_sym_BSLASH, - ACTIONS(3454), 5, + ACTIONS(3468), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [106157] = 4, - ACTIONS(3458), 1, - anon_sym_COMMA, - STATE(1917), 1, - aux_sym_assert_statement_repeat1, + [106265] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1293), 4, + ACTIONS(3472), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [106174] = 4, - ACTIONS(3460), 1, - anon_sym_COMMA, - STATE(1964), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_PIPE, + [106278] = 4, + ACTIONS(3476), 1, + anon_sym_AT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3462), 4, - anon_sym_if, + STATE(1893), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(3474), 3, anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [106191] = 2, + anon_sym_def, + anon_sym_class, + [106295] = 6, + ACTIONS(3142), 1, + anon_sym_as, + ACTIONS(3144), 1, + anon_sym_if, + ACTIONS(3146), 1, + anon_sym_and, + ACTIONS(3148), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3464), 6, - anon_sym_DOT, + ACTIONS(3479), 2, anon_sym_RPAREN, anon_sym_COMMA, + [106316] = 6, + ACTIONS(3170), 1, + anon_sym_as, + ACTIONS(3172), 1, + anon_sym_if, + ACTIONS(3174), 1, + anon_sym_and, + ACTIONS(3176), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3481), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [106337] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3483), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [106204] = 2, + [106350] = 5, + ACTIONS(3487), 1, + anon_sym_DOT, + ACTIONS(3489), 1, + anon_sym_COLON, + ACTIONS(3491), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3485), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [106369] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1650), 6, + ACTIONS(3493), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [106217] = 2, + [106382] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 6, + ACTIONS(3097), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [106230] = 4, - ACTIONS(3468), 1, - anon_sym_COMMA, - STATE(1928), 1, - aux_sym_for_in_clause_repeat1, + [106395] = 6, + ACTIONS(2958), 1, + anon_sym_and, + ACTIONS(2960), 1, + anon_sym_or, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3462), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [106247] = 6, - ACTIONS(3155), 1, + ACTIONS(3495), 2, + sym__newline, + anon_sym_SEMI, + [106416] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3497), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106429] = 6, + ACTIONS(3142), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3144), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3146), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3148), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3470), 2, + ACTIONS(3499), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [106268] = 4, - ACTIONS(3474), 1, + [106450] = 6, + ACTIONS(3501), 1, + anon_sym_DOT, + ACTIONS(3505), 1, + anon_sym_COLON, + ACTIONS(3507), 1, + anon_sym_EQ, + ACTIONS(3509), 1, anon_sym_PIPE, - STATE(1959), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 4, + ACTIONS(3503), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [106471] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, - anon_sym_COLON, - [106285] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(3196), 2, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106298] = 2, + [106492] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3513), 1, + anon_sym_BSLASH, + ACTIONS(3511), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106509] = 4, + ACTIONS(3517), 1, + anon_sym_COMMA, + STATE(1906), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3515), 4, anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106526] = 4, + ACTIONS(3520), 1, anon_sym_COMMA, + STATE(1921), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3522), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106543] = 6, + ACTIONS(3142), 1, anon_sym_as, - anon_sym_PIPE, - [106311] = 2, + ACTIONS(3144), 1, + anon_sym_if, + ACTIONS(3146), 1, + anon_sym_and, + ACTIONS(3148), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3476), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3524), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106324] = 6, + [106564] = 6, ACTIONS(3134), 1, anon_sym_and, ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3146), 1, + ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3148), 1, + ACTIONS(3140), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3470), 2, - anon_sym_RPAREN, + ACTIONS(3479), 2, anon_sym_COMMA, - [106345] = 4, - ACTIONS(3478), 1, - anon_sym_DOT, - STATE(1946), 1, - aux_sym_dotted_name_repeat1, + anon_sym_COLON, + [106585] = 4, + ACTIONS(3526), 1, + anon_sym_COMMA, + STATE(1910), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(2871), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [106602] = 6, + ACTIONS(3170), 1, + anon_sym_as, + ACTIONS(3172), 1, + anon_sym_if, + ACTIONS(3174), 1, + anon_sym_and, + ACTIONS(3176), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3499), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [106623] = 7, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3456), 1, anon_sym_as, - [106362] = 4, - ACTIONS(3482), 1, + ACTIONS(3529), 1, anon_sym_COMMA, - STATE(1977), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3531), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3480), 4, - anon_sym_RPAREN, + [106646] = 6, + ACTIONS(3170), 1, + anon_sym_as, + ACTIONS(3172), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [106379] = 4, - ACTIONS(3484), 1, + ACTIONS(3174), 1, + anon_sym_and, + ACTIONS(3176), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3196), 2, anon_sym_COMMA, - STATE(1887), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACK, + [106667] = 4, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 4, + ACTIONS(2994), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [106396] = 4, - ACTIONS(3488), 1, + anon_sym_COLON, + [106684] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3497), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106697] = 4, + ACTIONS(3535), 1, anon_sym_COMMA, - STATE(1891), 1, + STATE(1984), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 4, + ACTIONS(3533), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [106413] = 6, - ACTIONS(3155), 1, + [106714] = 6, + ACTIONS(3152), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3154), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3158), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3160), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 2, + ACTIONS(3537), 2, anon_sym_COMMA, anon_sym_RBRACE, - [106434] = 3, + [106735] = 4, + ACTIONS(3539), 1, + anon_sym_COMMA, + STATE(1906), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3306), 4, + ACTIONS(3522), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106752] = 4, + ACTIONS(3543), 1, + anon_sym_PIPE, + STATE(1919), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3541), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [106769] = 3, + STATE(1934), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3541), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, + [106784] = 4, + ACTIONS(3546), 1, + anon_sym_COMMA, + STATE(1921), 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_RBRACK, + [106801] = 4, + ACTIONS(3549), 1, + anon_sym_COMMA, + STATE(1910), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(959), 4, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACE, - [106449] = 7, - ACTIONS(3494), 1, + sym_type_conversion, + [106818] = 7, + ACTIONS(3551), 1, anon_sym_DOT, - ACTIONS(3496), 1, + ACTIONS(3553), 1, anon_sym_COMMA, - ACTIONS(3498), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3500), 1, + ACTIONS(3557), 1, anon_sym_RBRACK, - ACTIONS(3502), 1, + ACTIONS(3559), 1, anon_sym_PIPE, - STATE(2480), 1, + STATE(2285), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106472] = 6, - ACTIONS(3155), 1, + [106841] = 4, + ACTIONS(3561), 1, + anon_sym_DOT, + STATE(1985), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3214), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3157), 1, - anon_sym_if, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, + [106858] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3504), 2, + ACTIONS(3563), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3362), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [106493] = 4, - ACTIONS(3478), 1, + anon_sym_as, + anon_sym_PIPE, + [106873] = 6, + ACTIONS(3487), 1, anon_sym_DOT, - STATE(1898), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3489), 1, + anon_sym_COLON, + ACTIONS(3491), 1, + anon_sym_PIPE, + ACTIONS(3567), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 4, + ACTIONS(3565), 2, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [106510] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, + [106894] = 4, + ACTIONS(3569), 1, + anon_sym_COMMA, + STATE(1921), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 2, - anon_sym_RPAREN, + ACTIONS(3571), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106911] = 4, + ACTIONS(3573), 1, anon_sym_COMMA, - [106531] = 3, - ACTIONS(3506), 1, - anon_sym_LPAREN, + STATE(1928), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [106546] = 6, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3515), 4, anon_sym_if, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, - ACTIONS(3), 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106928] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3508), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [106567] = 6, + ACTIONS(3578), 1, + anon_sym_BSLASH, + ACTIONS(3576), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106945] = 6, ACTIONS(3134), 1, anon_sym_and, ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3146), 1, + ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3148), 1, + ACTIONS(3140), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3510), 2, - anon_sym_RPAREN, + ACTIONS(3524), 2, anon_sym_COMMA, - [106588] = 6, + anon_sym_COLON, + [106966] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, ACTIONS(3138), 1, anon_sym_as, ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 2, - anon_sym_COMMA, - anon_sym_COLON, - [106609] = 7, - ACTIONS(3512), 1, + ACTIONS(3580), 2, anon_sym_COMMA, - ACTIONS(3514), 1, - anon_sym_as, - ACTIONS(3516), 1, - anon_sym_if, - ACTIONS(3518), 1, anon_sym_COLON, - STATE(2065), 1, - aux_sym_case_clause_repeat1, - STATE(2779), 1, - sym_if_clause, + [106987] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106632] = 4, - ACTIONS(3474), 1, + ACTIONS(3183), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - STATE(1959), 1, + anon_sym_RBRACE, + [107000] = 4, + ACTIONS(3584), 1, + anon_sym_PIPE, + STATE(1934), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 4, + ACTIONS(3582), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [106649] = 6, - ACTIONS(3196), 1, + [107017] = 4, + ACTIONS(3584), 1, + anon_sym_PIPE, + STATE(1919), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3586), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, + anon_sym_COLON, + [107034] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1443), 2, + ACTIONS(3183), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACK, - [106670] = 4, - ACTIONS(3142), 1, + anon_sym_PIPE, + [107047] = 6, + ACTIONS(3170), 1, + anon_sym_as, + ACTIONS(3172), 1, + anon_sym_if, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3176), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 4, + ACTIONS(3212), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [106687] = 6, - ACTIONS(3134), 1, + anon_sym_RBRACK, + [107068] = 6, + ACTIONS(2958), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(2960), 1, anon_sym_or, - ACTIONS(3146), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(3148), 1, + ACTIONS(2984), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3522), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [106708] = 4, - ACTIONS(3524), 1, - anon_sym_COMMA, - STATE(1917), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3204), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [106725] = 2, + ACTIONS(3212), 2, + sym__newline, + anon_sym_SEMI, + [107089] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1650), 6, + ACTIONS(3466), 6, anon_sym_DOT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [106738] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, + [107102] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3527), 2, + ACTIONS(3588), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - [106759] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3529), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3412), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_EQ, anon_sym_PIPE, - [106774] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3531), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [106795] = 7, - ACTIONS(3494), 1, + [107115] = 7, + ACTIONS(3551), 1, anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3502), 1, + ACTIONS(3559), 1, anon_sym_PIPE, - ACTIONS(3533), 1, + ACTIONS(3590), 1, anon_sym_COMMA, - ACTIONS(3535), 1, + ACTIONS(3592), 1, anon_sym_RBRACK, - STATE(2372), 1, + STATE(2485), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106818] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3211), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + [107138] = 6, + ACTIONS(3142), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [106831] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3539), 1, - anon_sym_BSLASH, - ACTIONS(3537), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [106848] = 2, + ACTIONS(3144), 1, + anon_sym_if, + ACTIONS(3146), 1, + anon_sym_and, + ACTIONS(3148), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 6, - anon_sym_DOT, + ACTIONS(3196), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106861] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3543), 1, - anon_sym_BSLASH, - ACTIONS(3541), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [106878] = 6, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, + [107159] = 6, + ACTIONS(3170), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(3172), 1, anon_sym_if, + ACTIONS(3174), 1, + anon_sym_and, + ACTIONS(3176), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3545), 2, - sym__newline, - anon_sym_SEMI, - [106899] = 4, - ACTIONS(3547), 1, + ACTIONS(1435), 2, anon_sym_COMMA, - STATE(1928), 1, + anon_sym_RBRACK, + [107180] = 4, + ACTIONS(3594), 1, + anon_sym_COMMA, + STATE(1907), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3550), 4, + ACTIONS(3596), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [106916] = 6, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, + [107197] = 4, + ACTIONS(3598), 1, + anon_sym_COMMA, + STATE(1928), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [106937] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3522), 4, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [107214] = 6, ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3552), 2, - anon_sym_COMMA, - anon_sym_COLON, - [106958] = 6, - ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3144), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3146), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3148), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1425), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [106979] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3476), 6, - anon_sym_DOT, + ACTIONS(3600), 2, anon_sym_RPAREN, anon_sym_COMMA, + [107235] = 7, + ACTIONS(3551), 1, + anon_sym_DOT, + ACTIONS(3555), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3559), 1, anon_sym_PIPE, - [106992] = 4, - ACTIONS(3554), 1, - anon_sym_COMMA, - STATE(1951), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(959), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [107009] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3558), 1, - anon_sym_BSLASH, - ACTIONS(3556), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107026] = 4, - ACTIONS(3560), 1, + ACTIONS(3602), 1, anon_sym_COMMA, - STATE(1964), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3604), 1, + anon_sym_RBRACK, + STATE(2442), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3562), 4, + [107258] = 6, + ACTIONS(3170), 1, + anon_sym_as, + ACTIONS(3172), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107043] = 6, - ACTIONS(3134), 1, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3176), 1, anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 2, - anon_sym_RPAREN, + ACTIONS(3460), 2, anon_sym_COMMA, - [107064] = 3, + anon_sym_RBRACK, + [107279] = 4, + ACTIONS(3561), 1, + anon_sym_DOT, + STATE(1924), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3306), 4, + ACTIONS(3206), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [107079] = 4, + [107296] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3568), 1, + ACTIONS(3608), 1, anon_sym_BSLASH, - ACTIONS(3566), 5, + ACTIONS(3606), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [107096] = 3, + [107313] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3570), 2, + ACTIONS(3610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3412), 4, + ACTIONS(3362), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [107111] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3574), 1, - anon_sym_BSLASH, - ACTIONS(3572), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107128] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3576), 2, - anon_sym_COMMA, - anon_sym_COLON, - [107149] = 3, - STATE(1959), 1, - aux_sym_union_pattern_repeat1, + [107328] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 5, + ACTIONS(3493), 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, - [107164] = 4, - ACTIONS(3580), 1, - anon_sym_PIPE, - STATE(1943), 1, - aux_sym_union_pattern_repeat1, + [107341] = 4, + ACTIONS(3612), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(3196), 4, anon_sym_COLON, - [107181] = 6, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [107358] = 6, + ACTIONS(2958), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(2960), 1, anon_sym_or, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [107202] = 2, + ACTIONS(3615), 2, + sym__newline, + anon_sym_SEMI, + [107379] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 6, + ACTIONS(3097), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107215] = 4, - ACTIONS(3583), 1, + [107392] = 5, + ACTIONS(3501), 1, anon_sym_DOT, - STATE(1946), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3505), 1, + anon_sym_COLON, + ACTIONS(3509), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3485), 3, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_EQ, + [107411] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3619), 1, + anon_sym_BSLASH, + ACTIONS(3617), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107428] = 6, + ACTIONS(3142), 1, anon_sym_as, - [107232] = 7, - ACTIONS(3140), 1, + ACTIONS(3144), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3146), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3148), 1, anon_sym_or, - ACTIONS(3586), 1, - anon_sym_COMMA, - ACTIONS(3588), 1, - anon_sym_as, - ACTIONS(3590), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107255] = 6, - ACTIONS(3134), 1, + ACTIONS(3621), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [107449] = 6, + ACTIONS(3152), 1, + anon_sym_as, + ACTIONS(3154), 1, + anon_sym_if, + ACTIONS(3158), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3160), 1, anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3460), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [107470] = 4, + ACTIONS(3623), 1, + anon_sym_COMMA, + STATE(1928), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3571), 4, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [107487] = 3, + ACTIONS(3625), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3592), 2, - anon_sym_RPAREN, + ACTIONS(3316), 5, anon_sym_COMMA, - [107276] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3148), 1, anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [107502] = 4, + ACTIONS(3627), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 2, - anon_sym_RPAREN, + ACTIONS(1261), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [107519] = 4, + ACTIONS(3629), 1, anon_sym_COMMA, - [107297] = 2, + STATE(1944), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3596), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [107536] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3594), 6, + ACTIONS(1637), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107310] = 4, - ACTIONS(3596), 1, + [107549] = 4, + ACTIONS(3631), 1, anon_sym_COMMA, - STATE(1951), 1, - aux_sym__patterns_repeat1, + STATE(1927), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2875), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [107327] = 2, + ACTIONS(3533), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [107566] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3599), 6, + ACTIONS(3466), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107340] = 3, + [107579] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3601), 2, + ACTIONS(3633), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3306), 4, + ACTIONS(3316), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [107355] = 4, - ACTIONS(3605), 1, - anon_sym_AT, + [107594] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1954), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3603), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [107372] = 4, - ACTIONS(3608), 1, + ACTIONS(3472), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107607] = 7, + ACTIONS(3551), 1, + anon_sym_DOT, + ACTIONS(3555), 1, + anon_sym_COLON, + ACTIONS(3559), 1, + anon_sym_PIPE, + ACTIONS(3635), 1, anon_sym_COMMA, - STATE(1961), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3637), 1, + anon_sym_RBRACK, + STATE(2387), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3462), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [107389] = 6, - ACTIONS(3196), 1, + [107630] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3641), 1, + anon_sym_BSLASH, + ACTIONS(3639), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107647] = 6, + ACTIONS(3142), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3144), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3146), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3148), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 2, + ACTIONS(3212), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [107410] = 5, - ACTIONS(3610), 1, - anon_sym_DOT, - ACTIONS(3614), 1, - anon_sym_COLON, - ACTIONS(3616), 1, + [107668] = 4, + ACTIONS(3584), 1, anon_sym_PIPE, + STATE(1934), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3643), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [107685] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3647), 1, + anon_sym_BSLASH, + ACTIONS(3645), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107702] = 7, + ACTIONS(3649), 1, + anon_sym_COMMA, + ACTIONS(3651), 1, + anon_sym_as, + ACTIONS(3653), 1, + anon_sym_if, + ACTIONS(3655), 1, + anon_sym_COLON, + STATE(2079), 1, + aux_sym_case_clause_repeat1, + STATE(2727), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107725] = 6, + ACTIONS(3142), 1, + anon_sym_as, + ACTIONS(3144), 1, + anon_sym_if, + ACTIONS(3146), 1, + anon_sym_and, + ACTIONS(3148), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3612), 3, + ACTIONS(3537), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [107429] = 7, - ACTIONS(3494), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_COLON, - ACTIONS(3502), 1, - anon_sym_PIPE, - ACTIONS(3618), 1, - anon_sym_COMMA, - ACTIONS(3620), 1, - anon_sym_RBRACK, - STATE(2384), 1, - aux_sym_type_parameter_repeat1, + [107746] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107452] = 4, - ACTIONS(3474), 1, + ACTIONS(3183), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - STATE(1943), 1, - aux_sym_union_pattern_repeat1, + [107759] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 4, + ACTIONS(3657), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3316), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [107469] = 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [107774] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3624), 6, + ACTIONS(3497), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107482] = 4, - ACTIONS(3626), 1, + [107787] = 4, + ACTIONS(3659), 1, anon_sym_COMMA, - STATE(1961), 1, + STATE(1959), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3550), 4, - anon_sym_RPAREN, + ACTIONS(3533), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [107499] = 4, - ACTIONS(3629), 1, - anon_sym_COMMA, - STATE(1955), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACE, + [107804] = 6, + ACTIONS(3142), 1, + anon_sym_as, + ACTIONS(3144), 1, + anon_sym_if, + ACTIONS(3146), 1, + anon_sym_and, + ACTIONS(3148), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 4, + ACTIONS(3661), 2, anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [107516] = 2, + anon_sym_COMMA, + [107825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3464), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3663), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3362), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [107529] = 4, - ACTIONS(3631), 1, - anon_sym_COMMA, - STATE(1964), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3550), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_RBRACE, - [107546] = 6, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, + [107840] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 2, - sym__newline, - anon_sym_SEMI, - [107567] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3476), 6, + ACTIONS(3588), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107580] = 7, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3588), 1, - anon_sym_as, - ACTIONS(3634), 1, - anon_sym_COMMA, - ACTIONS(3636), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107603] = 3, + [107853] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3638), 2, + ACTIONS(3665), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3412), 4, + ACTIONS(3316), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [107618] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3146), 1, + [107868] = 6, + ACTIONS(3142), 1, anon_sym_as, - ACTIONS(3148), 1, + ACTIONS(3144), 1, anon_sym_if, + ACTIONS(3146), 1, + anon_sym_and, + ACTIONS(3148), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3504), 2, + ACTIONS(3667), 2, anon_sym_RPAREN, anon_sym_COMMA, - [107639] = 6, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, - ACTIONS(2983), 1, + [107889] = 4, + ACTIONS(3669), 1, + anon_sym_COMMA, + STATE(1906), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3571), 4, + anon_sym_RPAREN, anon_sym_if, + anon_sym_async, + anon_sym_for, + [107906] = 4, + ACTIONS(3671), 1, + anon_sym_DOT, + STATE(1985), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3640), 2, + ACTIONS(3183), 4, sym__newline, anon_sym_SEMI, - [107660] = 2, + anon_sym_COMMA, + anon_sym_as, + [107923] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3599), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3483), 6, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107673] = 5, - ACTIONS(3642), 1, + [107936] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3588), 6, anon_sym_DOT, - ACTIONS(3644), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3646), 1, + anon_sym_EQ, anon_sym_PIPE, + [107949] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3612), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_EQ, - [107692] = 6, - ACTIONS(3196), 1, + ACTIONS(3621), 2, + anon_sym_COMMA, + anon_sym_COLON, + [107970] = 6, + ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3176), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3504), 2, + ACTIONS(1439), 2, anon_sym_COMMA, anon_sym_RBRACK, - [107713] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3624), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107726] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3650), 1, - anon_sym_BSLASH, - ACTIONS(3648), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107743] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3654), 1, - anon_sym_BSLASH, - ACTIONS(3652), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107760] = 4, - ACTIONS(3656), 1, + [107991] = 4, + ACTIONS(3674), 1, anon_sym_COMMA, - STATE(1961), 1, + STATE(1918), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3562), 4, + ACTIONS(3596), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [107777] = 6, - ACTIONS(3155), 1, + [108008] = 6, + ACTIONS(3152), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3154), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3158), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3160), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3256), 2, + ACTIONS(3499), 2, anon_sym_COMMA, anon_sym_RBRACE, - [107798] = 6, - ACTIONS(3642), 1, - anon_sym_DOT, - ACTIONS(3644), 1, - anon_sym_COLON, - ACTIONS(3646), 1, - anon_sym_PIPE, - ACTIONS(3660), 1, - anon_sym_EQ, + [108029] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3658), 2, - sym__newline, - anon_sym_SEMI, - [107819] = 4, - ACTIONS(3662), 1, + ACTIONS(2871), 5, anon_sym_COMMA, - STATE(1928), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3562), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [107836] = 6, - ACTIONS(3610), 1, - anon_sym_DOT, - ACTIONS(3614), 1, anon_sym_COLON, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(3666), 1, anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [108041] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3664), 2, - anon_sym_RPAREN, + ACTIONS(3493), 5, + anon_sym_DOT, anon_sym_COMMA, - [107857] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [108053] = 6, ACTIONS(3134), 1, anon_sym_and, ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3146), 1, + ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3148), 1, + ACTIONS(3140), 1, anon_sym_if, + ACTIONS(3676), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3527), 2, - anon_sym_RPAREN, + [108073] = 3, + ACTIONS(3678), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3316), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [108087] = 4, + ACTIONS(3680), 1, + anon_sym_PIPE, + STATE(2012), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3643), 3, anon_sym_COMMA, - [107878] = 2, + anon_sym_as, + anon_sym_RBRACE, + [108103] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 6, + ACTIONS(3483), 5, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [107891] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, + [108115] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3592), 2, + ACTIONS(3682), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_COLON, - [107912] = 7, - ACTIONS(3494), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [108127] = 5, + ACTIONS(3551), 1, anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3502), 1, + ACTIONS(3559), 1, anon_sym_PIPE, - ACTIONS(3668), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3485), 2, anon_sym_COMMA, - ACTIONS(3670), 1, anon_sym_RBRACK, - STATE(2360), 1, - aux_sym_type_parameter_repeat1, + [108145] = 4, + ACTIONS(3684), 1, + anon_sym_COMMA, + STATE(2000), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3196), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [108161] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107935] = 4, - ACTIONS(3672), 1, + ACTIONS(3497), 5, + anon_sym_DOT, anon_sym_COMMA, - STATE(1980), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [108173] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3480), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(3588), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_RBRACK, - [107952] = 6, + anon_sym_PIPE, + [108185] = 5, + ACTIONS(3366), 1, + sym_identifier, + STATE(2133), 1, + sym_dotted_name, + STATE(2372), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3687), 2, + sym__newline, + anon_sym_SEMI, + [108203] = 5, + ACTIONS(3366), 1, + sym_identifier, + STATE(2133), 1, + sym_dotted_name, + STATE(2372), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3687), 2, + sym__newline, + anon_sym_SEMI, + [108221] = 6, ACTIONS(3134), 1, anon_sym_and, ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3146), 1, + ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3148), 1, + ACTIONS(3140), 1, anon_sym_if, + ACTIONS(3346), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3552), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [107973] = 4, - ACTIONS(3674), 1, - anon_sym_COMMA, - STATE(1935), 1, - aux_sym_for_in_clause_repeat1, + [108241] = 3, + ACTIONS(3689), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3480), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107990] = 2, + ACTIONS(3316), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [108255] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3464), 6, + ACTIONS(3183), 5, sym__newline, anon_sym_SEMI, anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_as, + [108267] = 4, + ACTIONS(3691), 1, anon_sym_PIPE, - [108003] = 2, + STATE(2020), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3594), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3643), 3, anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [108283] = 6, + ACTIONS(3693), 1, + anon_sym_LBRACE, + ACTIONS(3695), 1, + anon_sym_RBRACE, + ACTIONS(3697), 1, + aux_sym_format_specifier_token1, + STATE(2086), 1, + aux_sym_format_specifier_repeat1, + STATE(2452), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [108303] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3699), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108016] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3594), 6, + [108323] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3097), 5, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - [108029] = 6, - ACTIONS(3138), 1, + [108335] = 4, + ACTIONS(3680), 1, + anon_sym_PIPE, + STATE(2030), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3586), 3, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3676), 1, - anon_sym_else, + anon_sym_RBRACE, + [108351] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108049] = 4, - ACTIONS(3678), 1, + ACTIONS(3701), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - STATE(2089), 1, - aux_sym_union_pattern_repeat1, + [108363] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 3, - anon_sym_RPAREN, + ACTIONS(3703), 5, anon_sym_COMMA, anon_sym_as, - [108065] = 5, - ACTIONS(3642), 1, - anon_sym_DOT, - ACTIONS(3644), 1, + anon_sym_if, anon_sym_COLON, - ACTIONS(3646), 1, anon_sym_PIPE, + [108375] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3705), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3680), 2, - sym__newline, - anon_sym_SEMI, - [108083] = 2, + [108395] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3624), 5, + ACTIONS(3097), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108095] = 2, + [108407] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3682), 5, + ACTIONS(3707), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [108107] = 6, - ACTIONS(3684), 1, anon_sym_COLON, - ACTIONS(3686), 1, - anon_sym_EQ, - ACTIONS(3688), 1, - anon_sym_RBRACE, - ACTIONS(3690), 1, - sym_type_conversion, - STATE(2616), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108127] = 2, + anon_sym_PIPE, + [108419] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3550), 5, + ACTIONS(3515), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [108139] = 6, - ACTIONS(3138), 1, + [108431] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3709), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3692), 1, anon_sym_COLON, + anon_sym_PIPE, + [108443] = 4, + ACTIONS(3691), 1, + anon_sym_PIPE, + STATE(2052), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108159] = 6, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3586), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [108459] = 6, + ACTIONS(3134), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3694), 1, + ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3696), 1, - anon_sym_COLON, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3711), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108179] = 2, + [108479] = 4, + ACTIONS(3680), 1, + anon_sym_PIPE, + STATE(2012), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 5, + ACTIONS(3582), 3, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_RBRACE, - sym_type_conversion, - [108191] = 2, + [108495] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3698), 5, + ACTIONS(3466), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [108203] = 2, + [108507] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3700), 5, + ACTIONS(3713), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108215] = 4, - ACTIONS(3678), 1, - anon_sym_PIPE, - STATE(2089), 1, + [108519] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3715), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108539] = 3, + STATE(2012), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 3, - anon_sym_RPAREN, + ACTIONS(3541), 4, anon_sym_COMMA, anon_sym_as, - [108231] = 5, - ACTIONS(3435), 1, - sym_identifier, - STATE(2135), 1, - sym_dotted_name, - STATE(2306), 1, - sym_aliased_import, + anon_sym_PIPE, + anon_sym_RBRACE, + [108553] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3702), 2, - sym__newline, - anon_sym_SEMI, - [108249] = 2, + ACTIONS(3717), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [108565] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3704), 5, + ACTIONS(3719), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108261] = 2, + [108577] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3721), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + [108597] = 4, + ACTIONS(3723), 1, anon_sym_PIPE, - [108273] = 2, + STATE(2030), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 5, + ACTIONS(3541), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, + anon_sym_RBRACE, + [108613] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3472), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [108285] = 6, - ACTIONS(3684), 1, - anon_sym_COLON, - ACTIONS(3710), 1, - anon_sym_EQ, - ACTIONS(3712), 1, - anon_sym_RBRACE, - ACTIONS(3714), 1, - sym_type_conversion, - STATE(2714), 1, - sym_format_specifier, + [108625] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108305] = 2, + ACTIONS(3515), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [108637] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 5, + ACTIONS(3726), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108317] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3718), 1, - anon_sym_else, + [108649] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108337] = 5, - ACTIONS(3494), 1, + ACTIONS(3717), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [108661] = 6, + ACTIONS(3503), 1, + anon_sym_COMMA, + ACTIONS(3728), 1, anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3730), 1, anon_sym_COLON, - ACTIONS(3502), 1, + ACTIONS(3732), 1, + anon_sym_EQ, + ACTIONS(3734), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3720), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [108355] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, + [108681] = 6, + ACTIONS(1561), 1, + anon_sym_LBRACK, + ACTIONS(3736), 1, + anon_sym_LPAREN, + ACTIONS(3738), 1, + anon_sym_COLON, + STATE(2349), 1, + sym_type_parameter, + STATE(2664), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108701] = 6, + ACTIONS(3134), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3722), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108375] = 6, ACTIONS(3138), 1, anon_sym_as, ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3724), 1, + ACTIONS(3740), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108395] = 4, - ACTIONS(3726), 1, + [108721] = 5, + ACTIONS(3742), 1, anon_sym_COMMA, - STATE(2015), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3204), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [108411] = 2, + ACTIONS(3744), 1, + anon_sym_RBRACE, + STATE(2413), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 5, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(3316), 2, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [108423] = 2, + [108739] = 4, + ACTIONS(3691), 1, + anon_sym_PIPE, + STATE(2020), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1650), 5, - anon_sym_DOT, + ACTIONS(3582), 3, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108435] = 2, + anon_sym_as, + anon_sym_RBRACK, + [108755] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 5, + ACTIONS(1637), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - [108447] = 6, - ACTIONS(1561), 1, - anon_sym_LBRACK, - ACTIONS(3729), 1, - anon_sym_LPAREN, - ACTIONS(3731), 1, - anon_sym_COLON, - STATE(2272), 1, - sym_type_parameter, - STATE(2636), 1, - sym_argument_list, + [108767] = 4, + ACTIONS(3746), 1, + anon_sym_COMMA, + STATE(2000), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108467] = 2, + ACTIONS(1261), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [108783] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3733), 5, + ACTIONS(3748), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [108479] = 2, + [108795] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3750), 1, + anon_sym_as, + ACTIONS(3752), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3735), 5, - anon_sym_COMMA, - anon_sym_as, + [108815] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3140), 1, anon_sym_if, + ACTIONS(3750), 1, + anon_sym_as, + ACTIONS(3754), 1, anon_sym_COLON, - anon_sym_PIPE, - [108491] = 3, - STATE(2089), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [108505] = 2, + [108835] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3737), 5, + ACTIONS(3756), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108517] = 4, - ACTIONS(3739), 1, - anon_sym_PIPE, - STATE(2024), 1, - aux_sym_union_pattern_repeat1, + [108847] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3758), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + [108867] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, anon_sym_as, - [108533] = 2, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3760), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3742), 5, - anon_sym_COMMA, + [108887] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108545] = 2, + ACTIONS(3762), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108907] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3744), 5, + ACTIONS(3764), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108557] = 2, + [108919] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 5, + ACTIONS(3766), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108569] = 2, + [108931] = 3, + STATE(2020), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 5, + ACTIONS(3541), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [108581] = 2, + [108945] = 4, + ACTIONS(3768), 1, + anon_sym_PIPE, + STATE(2052), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 5, + ACTIONS(3541), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108593] = 2, + anon_sym_RBRACK, + [108961] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3752), 5, + ACTIONS(3771), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108605] = 2, + [108973] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2880), 5, + ACTIONS(2884), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [108617] = 2, + [108985] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3773), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1650), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [108629] = 2, + [109005] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 5, - anon_sym_DOT, + ACTIONS(3775), 5, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [108641] = 6, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, anon_sym_as, - ACTIONS(2983), 1, anon_sym_if, - ACTIONS(3754), 1, - sym__newline, + anon_sym_COLON, + anon_sym_PIPE, + [109017] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108661] = 5, - ACTIONS(3756), 1, + ACTIONS(3748), 5, anon_sym_COMMA, - ACTIONS(3758), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - STATE(2253), 1, - aux_sym_dict_pattern_repeat1, + [109029] = 6, + ACTIONS(1561), 1, + anon_sym_LBRACK, + ACTIONS(3736), 1, + anon_sym_LPAREN, + ACTIONS(3777), 1, + anon_sym_COLON, + STATE(2338), 1, + sym_type_parameter, + STATE(2685), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 2, - anon_sym_COLON, - anon_sym_PIPE, - [108679] = 6, - ACTIONS(3435), 1, + [109049] = 5, + ACTIONS(3366), 1, sym_identifier, - ACTIONS(3760), 1, - anon_sym_LPAREN, - STATE(2077), 1, + STATE(2133), 1, sym_dotted_name, - STATE(2149), 1, + STATE(2372), 1, sym_aliased_import, - STATE(2513), 1, - sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108699] = 6, - ACTIONS(3762), 1, - anon_sym_LBRACE, - ACTIONS(3764), 1, + ACTIONS(3779), 2, + sym__newline, + anon_sym_SEMI, + [109067] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2886), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACE, - ACTIONS(3766), 1, - aux_sym_format_specifier_token1, - STATE(2058), 1, - aux_sym_format_specifier_repeat1, - STATE(2426), 1, - sym_interpolation, - ACTIONS(5), 2, + sym_type_conversion, + [109079] = 6, + ACTIONS(3781), 1, + anon_sym_COLON, + ACTIONS(3783), 1, + anon_sym_EQ, + ACTIONS(3785), 1, + anon_sym_RBRACE, + ACTIONS(3787), 1, + sym_type_conversion, + STATE(2627), 1, + sym_format_specifier, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108719] = 2, + [109099] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3768), 5, + ACTIONS(3789), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108731] = 2, + [109111] = 5, + ACTIONS(3501), 1, + anon_sym_DOT, + ACTIONS(3505), 1, + anon_sym_COLON, + ACTIONS(3509), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3770), 5, + ACTIONS(3503), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108743] = 2, + [109129] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3772), 5, + ACTIONS(3717), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108755] = 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [109141] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 5, + ACTIONS(3483), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_PIPE, + [109153] = 6, + ACTIONS(3781), 1, + anon_sym_COLON, + ACTIONS(3791), 1, + anon_sym_EQ, + ACTIONS(3793), 1, anon_sym_RBRACE, + ACTIONS(3795), 1, sym_type_conversion, - [108767] = 2, + STATE(2638), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3774), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + [109173] = 5, + ACTIONS(3487), 1, + anon_sym_DOT, + ACTIONS(3489), 1, anon_sym_COLON, + ACTIONS(3491), 1, anon_sym_PIPE, - [108779] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 5, - anon_sym_COMMA, + ACTIONS(3797), 2, + sym__newline, + anon_sym_SEMI, + [109191] = 4, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2994), 3, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [108791] = 6, - ACTIONS(3762), 1, - anon_sym_LBRACE, - ACTIONS(3778), 1, - anon_sym_RBRACE, - ACTIONS(3780), 1, - aux_sym_format_specifier_token1, - STATE(2037), 1, - aux_sym_format_specifier_repeat1, - STATE(2426), 1, - sym_interpolation, - ACTIONS(5), 2, + [109207] = 6, + ACTIONS(2958), 1, + anon_sym_and, + ACTIONS(2960), 1, + anon_sym_or, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_if, + ACTIONS(3799), 1, + sym__newline, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108811] = 2, + [109227] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3801), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3782), 5, - anon_sym_COMMA, + [109247] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, + ACTIONS(3803), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109267] = 5, + ACTIONS(3728), 1, + anon_sym_DOT, + ACTIONS(3730), 1, anon_sym_COLON, + ACTIONS(3734), 1, anon_sym_PIPE, - [108823] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2875), 5, + ACTIONS(3485), 2, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108835] = 2, + [109285] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(3805), 5, anon_sym_COMMA, anon_sym_as, - [108847] = 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109297] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3733), 5, + ACTIONS(3515), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [108859] = 6, + [109309] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, ACTIONS(3138), 1, anon_sym_as, ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3784), 1, + ACTIONS(3807), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108879] = 5, - ACTIONS(3435), 1, - sym_identifier, - STATE(2135), 1, - sym_dotted_name, - STATE(2306), 1, - sym_aliased_import, + [109329] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 2, - sym__newline, - anon_sym_SEMI, - [108897] = 2, + ACTIONS(1563), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109341] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 5, + ACTIONS(3809), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108909] = 2, + [109353] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108921] = 6, - ACTIONS(3664), 1, + ACTIONS(3811), 5, anon_sym_COMMA, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3792), 1, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(3794), 1, - anon_sym_EQ, - ACTIONS(3796), 1, anon_sym_PIPE, + [109365] = 6, + ACTIONS(2564), 1, + anon_sym_COLON, + ACTIONS(3653), 1, + anon_sym_if, + ACTIONS(3813), 1, + anon_sym_COMMA, + STATE(2154), 1, + aux_sym_case_clause_repeat1, + STATE(2704), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108941] = 2, + [109385] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3798), 5, + ACTIONS(3493), 5, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [109397] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, + ACTIONS(3815), 1, anon_sym_COLON, - anon_sym_PIPE, - [108953] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3800), 5, + [109417] = 5, + ACTIONS(3819), 1, anon_sym_COMMA, + ACTIONS(3821), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108965] = 5, - ACTIONS(3435), 1, - sym_identifier, - STATE(2135), 1, - sym_dotted_name, - STATE(2306), 1, - sym_aliased_import, + STATE(2124), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 2, + ACTIONS(3817), 2, sym__newline, anon_sym_SEMI, - [108983] = 2, + [109435] = 4, + ACTIONS(3823), 1, + anon_sym_PIPE, + STATE(2094), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3802), 5, + ACTIONS(3582), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108995] = 6, - ACTIONS(3804), 1, + [109451] = 6, + ACTIONS(3825), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(3828), 1, anon_sym_RBRACE, - ACTIONS(3809), 1, + ACTIONS(3830), 1, aux_sym_format_specifier_token1, - STATE(2058), 1, + STATE(2084), 1, aux_sym_format_specifier_repeat1, - STATE(2426), 1, + STATE(2452), 1, sym_interpolation, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [109015] = 2, + [109471] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3599), 5, - anon_sym_DOT, + ACTIONS(3156), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [109027] = 5, - ACTIONS(3494), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_COLON, - ACTIONS(3502), 1, - anon_sym_PIPE, - ACTIONS(3), 2, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109483] = 6, + ACTIONS(3693), 1, + anon_sym_LBRACE, + ACTIONS(3833), 1, + anon_sym_RBRACE, + ACTIONS(3835), 1, + aux_sym_format_specifier_token1, + STATE(2084), 1, + aux_sym_format_specifier_repeat1, + STATE(2452), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3612), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [109045] = 2, + [109503] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3624), 5, - anon_sym_DOT, + ACTIONS(3748), 5, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - anon_sym_PIPE, - [109057] = 5, - ACTIONS(3812), 1, + [109515] = 5, + ACTIONS(3837), 1, anon_sym_COMMA, - ACTIONS(3814), 1, + ACTIONS(3839), 1, anon_sym_RBRACE, - STATE(2297), 1, + STATE(2299), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 2, + ACTIONS(3316), 2, anon_sym_COLON, anon_sym_PIPE, - [109075] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3816), 1, - anon_sym_else, + [109533] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109095] = 6, - ACTIONS(3138), 1, + ACTIONS(3841), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3362), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109115] = 6, - ACTIONS(2580), 1, - anon_sym_COLON, - ACTIONS(3516), 1, anon_sym_if, - ACTIONS(3818), 1, - anon_sym_COMMA, - STATE(2214), 1, - aux_sym_case_clause_repeat1, - STATE(2699), 1, - sym_if_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109135] = 5, - ACTIONS(3820), 1, - anon_sym_COMMA, - ACTIONS(3822), 1, - anon_sym_RBRACE, - STATE(2251), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3306), 2, anon_sym_COLON, anon_sym_PIPE, - [109153] = 3, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3306), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [109167] = 4, - ACTIONS(3826), 1, - anon_sym_PIPE, - STATE(2072), 1, - aux_sym_union_pattern_repeat1, + [109545] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [109183] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3594), 5, + ACTIONS(1637), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [109195] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3828), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109215] = 2, + [109557] = 6, + ACTIONS(3366), 1, + sym_identifier, + ACTIONS(3843), 1, + anon_sym_LPAREN, + STATE(2082), 1, + sym_dotted_name, + STATE(2112), 1, + sym_aliased_import, + STATE(2599), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3798), 5, - anon_sym_COMMA, - anon_sym_as, + [109577] = 5, + ACTIONS(3551), 1, + anon_sym_DOT, + ACTIONS(3555), 1, anon_sym_COLON, + ACTIONS(3559), 1, anon_sym_PIPE, - anon_sym_RBRACE, - [109227] = 4, - ACTIONS(3826), 1, - anon_sym_PIPE, - STATE(2075), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 3, + ACTIONS(3845), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [109243] = 4, - ACTIONS(3826), 1, - anon_sym_PIPE, - STATE(2072), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3472), 3, + anon_sym_RBRACK, + [109595] = 5, + ACTIONS(3847), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(3849), 1, anon_sym_RBRACE, - [109259] = 3, - STATE(2072), 1, - aux_sym_union_pattern_repeat1, + STATE(2314), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 4, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3316), 2, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [109273] = 4, - ACTIONS(3830), 1, + [109613] = 4, + ACTIONS(3823), 1, anon_sym_PIPE, - STATE(2075), 1, + STATE(2100), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 3, + ACTIONS(3586), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [109289] = 6, + [109629] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3851), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109649] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, ACTIONS(3138), 1, anon_sym_as, ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3833), 1, - anon_sym_else, + ACTIONS(3853), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109309] = 5, - ACTIONS(3837), 1, + [109669] = 5, + ACTIONS(3855), 1, anon_sym_COMMA, - ACTIONS(3839), 1, - anon_sym_as, - STATE(2190), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3835), 2, - sym__newline, - anon_sym_SEMI, - [109327] = 2, + ACTIONS(3857), 1, + anon_sym_RBRACE, + STATE(2464), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3599), 5, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(3316), 2, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [109339] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3841), 1, - anon_sym_COLON, + [109687] = 3, + ACTIONS(3859), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109359] = 3, - ACTIONS(3843), 1, - anon_sym_LPAREN, + ACTIONS(3316), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [109701] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 4, + ACTIONS(3861), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [109373] = 4, - ACTIONS(3845), 1, + [109713] = 4, + ACTIONS(3863), 1, anon_sym_PIPE, - STATE(2086), 1, + STATE(2100), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 3, + ACTIONS(3541), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [109389] = 2, + [109729] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3476), 5, - anon_sym_DOT, + ACTIONS(3866), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [109401] = 4, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, + [109741] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 3, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [109417] = 6, - ACTIONS(3138), 1, + ACTIONS(3682), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3847), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109437] = 5, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3792), 1, anon_sym_COLON, - ACTIONS(3796), 1, anon_sym_PIPE, + [109753] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3612), 2, + ACTIONS(3868), 5, anon_sym_COMMA, - anon_sym_EQ, - [109455] = 4, - ACTIONS(3845), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - STATE(2103), 1, + [109765] = 3, + STATE(2094), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 3, + ACTIONS(3541), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [109471] = 2, + anon_sym_PIPE, + [109779] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3464), 5, + ACTIONS(3472), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [109483] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3849), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109503] = 4, - ACTIONS(3678), 1, + [109791] = 4, + ACTIONS(3823), 1, anon_sym_PIPE, - STATE(2024), 1, + STATE(2094), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 3, + ACTIONS(3643), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [109519] = 2, + [109807] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3682), 5, + ACTIONS(3870), 5, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [109531] = 6, - ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3851), 1, anon_sym_COLON, + anon_sym_PIPE, + [109819] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109551] = 4, - ACTIONS(3853), 1, + ACTIONS(3872), 5, anon_sym_COMMA, - STATE(2015), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109831] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1293), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [109567] = 2, + ACTIONS(3874), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109843] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3550), 5, + ACTIONS(3811), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [109579] = 6, - ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3855), 1, - anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [109854] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109599] = 6, - ACTIONS(3138), 1, + ACTIONS(3868), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3857), 1, - anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [109865] = 4, + ACTIONS(3819), 1, + anon_sym_COMMA, + STATE(2123), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3817), 2, + sym__newline, + anon_sym_SEMI, + [109880] = 4, + ACTIONS(3878), 1, + anon_sym_DOT, + STATE(2125), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109619] = 6, + ACTIONS(3876), 2, + anon_sym_import, + sym_identifier, + [109895] = 5, ACTIONS(1561), 1, anon_sym_LBRACK, - ACTIONS(3729), 1, + ACTIONS(3880), 1, anon_sym_LPAREN, - ACTIONS(3859), 1, - anon_sym_COLON, - STATE(2429), 1, + STATE(2507), 1, sym_type_parameter, - STATE(2684), 1, - sym_argument_list, + STATE(2545), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109639] = 3, - ACTIONS(3861), 1, + [109912] = 5, + ACTIONS(1561), 1, + anon_sym_LBRACK, + ACTIONS(3880), 1, anon_sym_LPAREN, + STATE(2509), 1, + sym_type_parameter, + STATE(2547), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 4, - anon_sym_RPAREN, + [109929] = 4, + ACTIONS(3884), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [109653] = 4, - ACTIONS(3845), 1, - anon_sym_PIPE, - STATE(2086), 1, - aux_sym_union_pattern_repeat1, + STATE(2126), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3882), 2, + sym__newline, + anon_sym_SEMI, + [109944] = 5, + ACTIONS(1561), 1, + anon_sym_LBRACK, + ACTIONS(3880), 1, + anon_sym_LPAREN, + STATE(2551), 1, + sym_type_parameter, + STATE(2552), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 3, + [109961] = 4, + ACTIONS(3888), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [109669] = 6, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3694), 1, - anon_sym_as, - ACTIONS(3863), 1, - anon_sym_COLON, + STATE(2130), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109689] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3865), 1, - anon_sym_COLON, + ACTIONS(3886), 2, + sym__newline, + anon_sym_SEMI, + [109976] = 4, + ACTIONS(3888), 1, + anon_sym_COMMA, + STATE(2139), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109709] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3867), 1, + ACTIONS(3890), 2, + sym__newline, + anon_sym_SEMI, + [109991] = 5, + ACTIONS(3728), 1, + anon_sym_DOT, + ACTIONS(3730), 1, anon_sym_COLON, + ACTIONS(3734), 1, + anon_sym_PIPE, + ACTIONS(3892), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109729] = 3, - STATE(2086), 1, - aux_sym_union_pattern_repeat1, + [110008] = 5, + ACTIONS(3366), 1, + sym_identifier, + STATE(2082), 1, + sym_dotted_name, + STATE(2112), 1, + sym_aliased_import, + STATE(2506), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 4, + [110025] = 4, + ACTIONS(3894), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [109743] = 4, - ACTIONS(3869), 1, - anon_sym_PIPE, - STATE(2103), 1, - aux_sym_union_pattern_repeat1, + STATE(2000), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 3, + ACTIONS(1437), 2, + sym__newline, + anon_sym_SEMI, + [110040] = 4, + ACTIONS(3898), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [109759] = 2, + STATE(2135), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3733), 5, + ACTIONS(3896), 2, + sym__newline, + anon_sym_SEMI, + [110055] = 4, + ACTIONS(3900), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [109771] = 2, + STATE(2135), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3550), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [109783] = 2, + ACTIONS(3896), 2, + sym__newline, + anon_sym_SEMI, + [110070] = 4, + ACTIONS(3904), 1, + anon_sym_DOT, + STATE(2125), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3682), 5, - anon_sym_RPAREN, + ACTIONS(3902), 2, + anon_sym_import, + sym_identifier, + [110085] = 4, + ACTIONS(3909), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [109795] = 2, + STATE(2138), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 5, - anon_sym_DOT, + ACTIONS(3907), 2, + sym__newline, + anon_sym_SEMI, + [110100] = 4, + ACTIONS(3913), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [109807] = 5, - ACTIONS(3610), 1, - anon_sym_DOT, - ACTIONS(3614), 1, - anon_sym_COLON, - ACTIONS(3616), 1, - anon_sym_PIPE, + STATE(2138), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3664), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [109825] = 5, - ACTIONS(3872), 1, + ACTIONS(3911), 2, + sym__newline, + anon_sym_SEMI, + [110115] = 4, + ACTIONS(3218), 1, anon_sym_COMMA, - ACTIONS(3874), 1, - anon_sym_RBRACE, - STATE(2413), 1, - aux_sym_dict_pattern_repeat1, + STATE(2000), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 2, - anon_sym_COLON, - anon_sym_PIPE, - [109843] = 2, + ACTIONS(3915), 2, + sym__newline, + anon_sym_SEMI, + [110130] = 5, + ACTIONS(1561), 1, + anon_sym_LBRACK, + ACTIONS(3880), 1, + anon_sym_LPAREN, + STATE(2591), 1, + sym_type_parameter, + STATE(2592), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3735), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [109854] = 4, - ACTIONS(3878), 1, + [110147] = 4, + ACTIONS(3888), 1, anon_sym_COMMA, - STATE(2134), 1, + STATE(2140), 1, aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3876), 2, + ACTIONS(3917), 2, sym__newline, anon_sym_SEMI, - [109869] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3770), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [109880] = 3, + [110162] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 2, + ACTIONS(3919), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [110173] = 5, + ACTIONS(3781), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3880), 2, - anon_sym_COMMA, + ACTIONS(3921), 1, anon_sym_RBRACE, - [109893] = 4, - ACTIONS(3884), 1, - anon_sym_COLON, - ACTIONS(3886), 1, - anon_sym_EQ, + ACTIONS(3923), 1, + sym_type_conversion, + STATE(2700), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3882), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [109908] = 2, + [110190] = 3, + ACTIONS(3821), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3772), 4, - anon_sym_RPAREN, + ACTIONS(3925), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [109919] = 2, + [110203] = 5, + ACTIONS(3927), 1, + anon_sym_case, + ACTIONS(3929), 1, + sym__dedent, + STATE(2147), 1, + aux_sym__match_block_repeat1, + STATE(2534), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3774), 4, - anon_sym_RPAREN, + [110220] = 4, + ACTIONS(3933), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [109930] = 5, - ACTIONS(1561), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LPAREN, - STATE(2512), 1, - sym_type_parameter, - STATE(2536), 1, - sym_parameters, + STATE(2135), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109947] = 5, - ACTIONS(3890), 1, - anon_sym_RPAREN, - ACTIONS(3892), 1, - anon_sym_COMMA, - ACTIONS(3894), 1, - anon_sym_as, - STATE(2247), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3931), 2, + sym__newline, + anon_sym_SEMI, + [110235] = 5, + ACTIONS(3936), 1, + sym_identifier, + STATE(2156), 1, + sym_dotted_name, + STATE(2416), 1, + sym_aliased_import, + STATE(2730), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109964] = 5, - ACTIONS(3896), 1, - anon_sym_COMMA, - ACTIONS(3898), 1, - anon_sym_as, - ACTIONS(3900), 1, - anon_sym_RBRACK, - STATE(2248), 1, - aux_sym_case_clause_repeat1, + [110252] = 5, + ACTIONS(3936), 1, + sym_identifier, + STATE(2156), 1, + sym_dotted_name, + STATE(2416), 1, + sym_aliased_import, + STATE(2707), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109981] = 2, + [110269] = 4, + ACTIONS(3940), 1, + anon_sym_COMMA, + STATE(2138), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3700), 4, - anon_sym_RPAREN, + ACTIONS(3938), 2, + sym__newline, + anon_sym_SEMI, + [110284] = 4, + ACTIONS(3888), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [109992] = 2, + STATE(2140), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110003] = 4, - ACTIONS(3878), 1, + ACTIONS(3943), 2, + sym__newline, + anon_sym_SEMI, + [110299] = 4, + ACTIONS(3947), 1, anon_sym_COMMA, - STATE(2225), 1, + STATE(2140), 1, aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3902), 2, + ACTIONS(3945), 2, sym__newline, anon_sym_SEMI, - [110018] = 5, - ACTIONS(3894), 1, - anon_sym_as, - ACTIONS(3904), 1, - anon_sym_RPAREN, - ACTIONS(3906), 1, + [110314] = 5, + ACTIONS(3503), 1, anon_sym_COMMA, - STATE(2255), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3728), 1, + anon_sym_DOT, + ACTIONS(3730), 1, + anon_sym_COLON, + ACTIONS(3734), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110035] = 2, + [110331] = 5, + ACTIONS(3927), 1, + anon_sym_case, + ACTIONS(3950), 1, + sym__dedent, + STATE(2144), 1, + aux_sym__match_block_repeat1, + STATE(2534), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3782), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110046] = 5, - ACTIONS(3684), 1, + [110348] = 5, + ACTIONS(3781), 1, anon_sym_COLON, - ACTIONS(3908), 1, + ACTIONS(3952), 1, anon_sym_RBRACE, - ACTIONS(3910), 1, + ACTIONS(3954), 1, sym_type_conversion, - STATE(2768), 1, + STATE(2675), 1, sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110063] = 2, + [110365] = 5, + ACTIONS(3927), 1, + anon_sym_case, + ACTIONS(3956), 1, + sym__dedent, + STATE(2147), 1, + aux_sym__match_block_repeat1, + STATE(2534), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 4, - anon_sym_RPAREN, + [110382] = 4, + ACTIONS(3218), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110074] = 5, - ACTIONS(3664), 1, + STATE(2000), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3958), 2, + sym__newline, + anon_sym_SEMI, + [110397] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3643), 4, anon_sym_COMMA, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3792), 1, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(3796), 1, - anon_sym_PIPE, + [110408] = 5, + ACTIONS(3960), 1, + anon_sym_case, + ACTIONS(3963), 1, + sym__dedent, + STATE(2147), 1, + aux_sym__match_block_repeat1, + STATE(2534), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110091] = 4, - ACTIONS(3914), 1, + [110425] = 5, + ACTIONS(3965), 1, + anon_sym_RPAREN, + ACTIONS(3967), 1, anon_sym_COMMA, - STATE(2150), 1, - aux_sym__import_list_repeat1, + ACTIONS(3969), 1, + anon_sym_as, + STATE(2469), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3912), 2, - sym__newline, - anon_sym_SEMI, - [110106] = 2, + [110442] = 5, + ACTIONS(3927), 1, + anon_sym_case, + ACTIONS(3971), 1, + sym__dedent, + STATE(2134), 1, + aux_sym__match_block_repeat1, + STATE(2534), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 4, + [110459] = 5, + ACTIONS(3973), 1, anon_sym_COMMA, + ACTIONS(3975), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110117] = 5, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3792), 1, - anon_sym_COLON, - ACTIONS(3796), 1, - anon_sym_PIPE, - ACTIONS(3916), 1, - anon_sym_EQ, + ACTIONS(3977), 1, + anon_sym_RBRACK, + STATE(2468), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110476] = 5, + ACTIONS(3969), 1, + anon_sym_as, + ACTIONS(3979), 1, + anon_sym_RPAREN, + ACTIONS(3981), 1, + anon_sym_COMMA, + STATE(2433), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110134] = 2, + [110493] = 3, + ACTIONS(3651), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3698), 4, - anon_sym_RPAREN, + ACTIONS(3983), 3, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110145] = 2, + anon_sym_if, + anon_sym_COLON, + [110506] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3800), 4, + ACTIONS(3985), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110156] = 2, + anon_sym_if, + anon_sym_COLON, + [110517] = 4, + ACTIONS(3987), 1, + anon_sym_COMMA, + STATE(2154), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3802), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110167] = 4, - ACTIONS(3920), 1, - anon_sym_COMMA, - STATE(2134), 1, - aux_sym_global_statement_repeat1, + ACTIONS(3983), 2, + anon_sym_if, + anon_sym_COLON, + [110532] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3918), 2, - sym__newline, - anon_sym_SEMI, - [110182] = 3, - ACTIONS(3839), 1, + ACTIONS(3316), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3990), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [110545] = 5, + ACTIONS(3817), 1, + anon_sym_RPAREN, + ACTIONS(3992), 1, + anon_sym_COMMA, + ACTIONS(3994), 1, anon_sym_as, + STATE(2389), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3923), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [110195] = 4, - ACTIONS(3927), 1, + [110562] = 5, + ACTIONS(3969), 1, + anon_sym_as, + ACTIONS(3996), 1, + anon_sym_RPAREN, + ACTIONS(3998), 1, anon_sym_COMMA, - STATE(2136), 1, - aux_sym_print_statement_repeat1, + STATE(2420), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3925), 2, - sym__newline, - anon_sym_SEMI, - [110210] = 2, + [110579] = 4, + ACTIONS(4002), 1, + anon_sym_COLON, + ACTIONS(4004), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3698), 4, + ACTIONS(4000), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [110594] = 5, + ACTIONS(3975), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110221] = 2, + ACTIONS(4006), 1, + anon_sym_COMMA, + ACTIONS(4008), 1, + anon_sym_RBRACK, + STATE(2408), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3700), 4, - anon_sym_COMMA, + [110611] = 5, + ACTIONS(3969), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110232] = 2, + ACTIONS(4010), 1, + anon_sym_RPAREN, + ACTIONS(4012), 1, + anon_sym_COMMA, + STATE(2406), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3704), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110243] = 5, - ACTIONS(3702), 1, + [110628] = 5, + ACTIONS(3687), 1, anon_sym_RPAREN, - ACTIONS(3930), 1, + ACTIONS(3936), 1, sym_identifier, - STATE(2417), 1, + STATE(2371), 1, sym_dotted_name, - STATE(2599), 1, + STATE(2561), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110260] = 2, + [110645] = 5, + ACTIONS(3687), 1, + anon_sym_RPAREN, + ACTIONS(3936), 1, + sym_identifier, + STATE(2371), 1, + sym_dotted_name, + STATE(2561), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110271] = 2, + [110662] = 5, + ACTIONS(3779), 1, + anon_sym_RPAREN, + ACTIONS(3936), 1, + sym_identifier, + STATE(2371), 1, + sym_dotted_name, + STATE(2561), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110282] = 2, + [110679] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 4, + ACTIONS(3868), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110293] = 2, + [110690] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 4, + ACTIONS(3682), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110304] = 2, + [110701] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3735), 4, + ACTIONS(3866), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110315] = 5, - ACTIONS(3894), 1, - anon_sym_as, - ACTIONS(3932), 1, - anon_sym_RPAREN, - ACTIONS(3934), 1, - anon_sym_COMMA, - STATE(2439), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110332] = 2, + [110712] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3735), 4, + ACTIONS(3861), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110343] = 2, + [110723] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3737), 4, + ACTIONS(3841), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110354] = 4, - ACTIONS(3837), 1, - anon_sym_COMMA, - STATE(2128), 1, - aux_sym__import_list_repeat1, + [110734] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 2, - sym__newline, - anon_sym_SEMI, - [110369] = 4, - ACTIONS(3938), 1, - anon_sym_COMMA, - STATE(2150), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3936), 2, - sym__newline, - anon_sym_SEMI, - [110384] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3742), 4, + ACTIONS(3764), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110395] = 2, + [110745] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3744), 4, + ACTIONS(3703), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110406] = 2, + [110756] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, + ACTIONS(3874), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110417] = 2, + [110767] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 4, + ACTIONS(3872), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110428] = 2, + [110778] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 4, + ACTIONS(3870), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110439] = 2, + [110789] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3752), 4, + ACTIONS(3811), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110450] = 2, + [110800] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3768), 4, + ACTIONS(3809), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110461] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3770), 4, - anon_sym_COMMA, + [110811] = 5, + ACTIONS(3969), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110472] = 2, + ACTIONS(4014), 1, + anon_sym_RPAREN, + ACTIONS(4016), 1, + anon_sym_COMMA, + STATE(2313), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3772), 4, - anon_sym_COMMA, + [110828] = 5, + ACTIONS(3975), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110483] = 2, + ACTIONS(4018), 1, + anon_sym_COMMA, + ACTIONS(4020), 1, + anon_sym_RBRACK, + STATE(2311), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3774), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110494] = 2, + [110845] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 4, + ACTIONS(3701), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110505] = 2, + [110856] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3782), 4, + ACTIONS(3805), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110516] = 2, + [110867] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3737), 4, + ACTIONS(3707), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110527] = 5, - ACTIONS(3941), 1, - anon_sym_case, - ACTIONS(3943), 1, - sym__dedent, - STATE(2182), 1, - aux_sym__match_block_repeat1, - STATE(2589), 1, - sym_case_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110544] = 2, + [110878] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3742), 4, - anon_sym_RPAREN, + ACTIONS(3789), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110555] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3744), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_RBRACE, + [110889] = 5, + ACTIONS(3969), 1, anon_sym_as, - anon_sym_PIPE, - [110566] = 5, - ACTIONS(3835), 1, + ACTIONS(4022), 1, anon_sym_RPAREN, - ACTIONS(3945), 1, + ACTIONS(4024), 1, anon_sym_COMMA, - ACTIONS(3947), 1, - anon_sym_as, - STATE(2296), 1, - aux_sym__import_list_repeat1, + STATE(2322), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110583] = 2, + [110906] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, - anon_sym_RPAREN, + ACTIONS(3775), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110594] = 2, + anon_sym_RBRACE, + [110917] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 4, - anon_sym_RPAREN, + ACTIONS(3771), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110605] = 2, + anon_sym_RBRACE, + [110928] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 4, - anon_sym_RPAREN, + ACTIONS(3766), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110616] = 2, + anon_sym_RBRACE, + [110939] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3798), 4, - anon_sym_RPAREN, + ACTIONS(3756), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110627] = 2, + anon_sym_RBRACE, + [110950] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3800), 4, + ACTIONS(3709), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110638] = 2, + [110961] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 4, + ACTIONS(3726), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [110649] = 2, + anon_sym_RBRACE, + [110972] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3798), 4, + ACTIONS(3719), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [110660] = 2, + anon_sym_RBRACE, + [110983] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3800), 4, + ACTIONS(3713), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [110671] = 2, + anon_sym_RBRACE, + [110994] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3802), 4, - anon_sym_RPAREN, + ACTIONS(3709), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110682] = 2, + anon_sym_RBRACE, + [111005] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3802), 4, + ACTIONS(3707), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [110693] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3949), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [110704] = 4, - ACTIONS(3878), 1, - anon_sym_COMMA, - STATE(2111), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3951), 2, - sym__newline, - anon_sym_SEMI, - [110719] = 2, + anon_sym_RBRACE, + [111016] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 4, + ACTIONS(3713), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110730] = 2, + [111027] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3752), 4, - anon_sym_RPAREN, + ACTIONS(3701), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110741] = 5, - ACTIONS(3941), 1, - anon_sym_case, - ACTIONS(3953), 1, - sym__dedent, - STATE(2217), 1, - aux_sym__match_block_repeat1, - STATE(2589), 1, - sym_case_clause, + anon_sym_RBRACE, + [111038] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110758] = 5, - ACTIONS(3894), 1, - anon_sym_as, - ACTIONS(3955), 1, + ACTIONS(3719), 4, anon_sym_RPAREN, - ACTIONS(3957), 1, anon_sym_COMMA, - STATE(2402), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110775] = 5, - ACTIONS(3898), 1, anon_sym_as, - ACTIONS(3959), 1, - anon_sym_COMMA, - ACTIONS(3961), 1, - anon_sym_RBRACK, - STATE(2404), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110792] = 4, - ACTIONS(3965), 1, - anon_sym_COMMA, - STATE(2136), 1, - aux_sym_print_statement_repeat1, + anon_sym_PIPE, + [111049] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 2, - sym__newline, - anon_sym_SEMI, - [110807] = 4, - ACTIONS(3969), 1, + ACTIONS(3726), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2197), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3967), 2, - sym__newline, - anon_sym_SEMI, - [110822] = 2, + anon_sym_as, + anon_sym_PIPE, + [111060] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3971), 4, + ACTIONS(3861), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [110833] = 5, - ACTIONS(3894), 1, - anon_sym_as, - ACTIONS(3973), 1, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [111071] = 5, ACTIONS(3975), 1, + anon_sym_as, + ACTIONS(4026), 1, anon_sym_COMMA, - STATE(2418), 1, + ACTIONS(4028), 1, + anon_sym_RBRACK, + STATE(2309), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110850] = 4, - ACTIONS(3228), 1, - anon_sym_COMMA, - STATE(2015), 1, - aux_sym_assert_statement_repeat1, + [111088] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3977), 2, - sym__newline, - anon_sym_SEMI, - [110865] = 4, - ACTIONS(3979), 1, + ACTIONS(3866), 4, anon_sym_COMMA, - STATE(2150), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3912), 2, - sym__newline, - anon_sym_SEMI, - [110880] = 5, - ACTIONS(3894), 1, anon_sym_as, - ACTIONS(3981), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [111099] = 5, + ACTIONS(3969), 1, + anon_sym_as, + ACTIONS(4030), 1, anon_sym_RPAREN, - ACTIONS(3983), 1, + ACTIONS(4032), 1, anon_sym_COMMA, - STATE(2244), 1, + STATE(2307), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110897] = 5, - ACTIONS(3894), 1, + [111116] = 5, + ACTIONS(3969), 1, anon_sym_as, - ACTIONS(3985), 1, + ACTIONS(4034), 1, anon_sym_RPAREN, - ACTIONS(3987), 1, + ACTIONS(4036), 1, anon_sym_COMMA, - STATE(2422), 1, + STATE(2290), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110914] = 5, - ACTIONS(3786), 1, - anon_sym_RPAREN, - ACTIONS(3930), 1, - sym_identifier, - STATE(2417), 1, - sym_dotted_name, - STATE(2599), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110931] = 5, - ACTIONS(3786), 1, - anon_sym_RPAREN, - ACTIONS(3930), 1, - sym_identifier, - STATE(2417), 1, - sym_dotted_name, - STATE(2599), 1, - sym_aliased_import, + [111133] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110948] = 5, - ACTIONS(3898), 1, - anon_sym_as, - ACTIONS(3989), 1, + ACTIONS(3868), 4, anon_sym_COMMA, - ACTIONS(3991), 1, - anon_sym_RBRACK, - STATE(2246), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110965] = 2, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111144] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3698), 4, + ACTIONS(3766), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [110976] = 4, - ACTIONS(3995), 1, - anon_sym_COMMA, - STATE(2136), 1, - aux_sym_print_statement_repeat1, + [111155] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3993), 2, - sym__newline, - anon_sym_SEMI, - [110991] = 5, - ACTIONS(3898), 1, - anon_sym_as, - ACTIONS(3997), 1, + ACTIONS(3771), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3999), 1, - anon_sym_RBRACK, - STATE(2496), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111008] = 2, + anon_sym_as, + anon_sym_PIPE, + [111166] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3700), 4, + ACTIONS(3775), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111019] = 2, + [111177] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3704), 4, + ACTIONS(3789), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111030] = 2, + [111188] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 4, + ACTIONS(3805), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111041] = 2, + [111199] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 4, + ACTIONS(3841), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [111052] = 5, - ACTIONS(3941), 1, - anon_sym_case, - ACTIONS(4001), 1, - sym__dedent, - STATE(2217), 1, - aux_sym__match_block_repeat1, - STATE(2589), 1, - sym_case_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111069] = 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [111210] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 4, + ACTIONS(3764), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111080] = 4, - ACTIONS(4005), 1, - anon_sym_DOT, - STATE(2206), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4003), 2, - anon_sym_import, - sym_identifier, - [111095] = 4, - ACTIONS(4009), 1, - anon_sym_DOT, - STATE(2206), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4007), 2, - anon_sym_import, - sym_identifier, - [111110] = 2, + [111221] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 4, + ACTIONS(3703), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111121] = 5, - ACTIONS(3930), 1, - sym_identifier, - STATE(2167), 1, - sym_dotted_name, - STATE(2356), 1, - sym_aliased_import, - STATE(2610), 1, - sym__import_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111138] = 2, + [111232] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3704), 4, - anon_sym_RPAREN, + ACTIONS(3874), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111149] = 2, + [111243] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 4, + ACTIONS(3809), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111160] = 5, - ACTIONS(3684), 1, - anon_sym_COLON, - ACTIONS(4012), 1, - anon_sym_RBRACE, - ACTIONS(4014), 1, - sym_type_conversion, - STATE(2762), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111177] = 5, - ACTIONS(3930), 1, - sym_identifier, - STATE(2167), 1, - sym_dotted_name, - STATE(2356), 1, - sym_aliased_import, - STATE(2701), 1, - sym__import_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111194] = 4, - ACTIONS(4016), 1, - anon_sym_COMMA, - STATE(2015), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1429), 2, - sym__newline, - anon_sym_SEMI, - [111209] = 4, - ACTIONS(4018), 1, - anon_sym_COMMA, - STATE(2214), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4021), 2, - anon_sym_if, - anon_sym_COLON, - [111224] = 2, + [111254] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3737), 4, + ACTIONS(3872), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111235] = 2, + [111265] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3742), 4, + ACTIONS(3870), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111246] = 5, - ACTIONS(4023), 1, - anon_sym_case, - ACTIONS(4026), 1, - sym__dedent, - STATE(2217), 1, - aux_sym__match_block_repeat1, - STATE(2589), 1, - sym_case_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111263] = 4, - ACTIONS(3228), 1, - anon_sym_COMMA, - STATE(2015), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4028), 2, - sym__newline, - anon_sym_SEMI, - [111278] = 2, + [111276] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3744), 4, + ACTIONS(3809), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111289] = 2, + [111287] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, + ACTIONS(3805), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111300] = 2, + [111298] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 4, + ACTIONS(3789), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111311] = 2, + [111309] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 4, + ACTIONS(3775), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111322] = 5, - ACTIONS(3941), 1, - anon_sym_case, - ACTIONS(4030), 1, - sym__dedent, - STATE(2203), 1, - aux_sym__match_block_repeat1, - STATE(2589), 1, - sym_case_clause, + [111320] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111339] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3752), 4, + ACTIONS(3771), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111350] = 4, - ACTIONS(3878), 1, - anon_sym_COMMA, - STATE(2134), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4032), 2, - sym__newline, - anon_sym_SEMI, - [111365] = 2, + [111331] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3768), 4, + ACTIONS(3766), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111376] = 2, + [111342] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3770), 4, + ACTIONS(3756), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111387] = 2, + [111353] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3772), 4, + ACTIONS(3811), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111398] = 2, + [111364] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3774), 4, + ACTIONS(3870), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111409] = 2, + [111375] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 4, + ACTIONS(3872), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111420] = 2, + [111386] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3782), 4, + ACTIONS(3726), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111431] = 5, - ACTIONS(3435), 1, - sym_identifier, - STATE(2077), 1, - sym_dotted_name, - STATE(2149), 1, - sym_aliased_import, - STATE(2571), 1, - sym__import_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111448] = 5, - ACTIONS(1561), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LPAREN, - STATE(2563), 1, - sym_parameters, - STATE(2591), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111465] = 5, - ACTIONS(1561), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LPAREN, - STATE(2564), 1, - sym_parameters, - STATE(2594), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111482] = 2, + [111397] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3768), 4, - anon_sym_RPAREN, + ACTIONS(3719), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111493] = 5, - ACTIONS(1561), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LPAREN, - STATE(2561), 1, - sym_parameters, - STATE(2565), 1, - sym_type_parameter, + [111408] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111510] = 5, - ACTIONS(3894), 1, - anon_sym_as, - ACTIONS(4034), 1, - anon_sym_RPAREN, - ACTIONS(4036), 1, + ACTIONS(3713), 4, anon_sym_COMMA, - STATE(2276), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111527] = 3, - ACTIONS(3514), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4021), 3, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - [111540] = 4, - ACTIONS(1293), 1, - anon_sym_COLON, - ACTIONS(4038), 1, - anon_sym_COMMA, - STATE(2478), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111554] = 4, - ACTIONS(3720), 1, anon_sym_RBRACK, - ACTIONS(4040), 1, - anon_sym_COMMA, - STATE(2240), 1, - aux_sym_type_parameter_repeat1, + anon_sym_PIPE, + [111419] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111568] = 4, - ACTIONS(4043), 1, + ACTIONS(3874), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4045), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + anon_sym_as, + anon_sym_PIPE, + [111430] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111582] = 4, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3066), 1, + ACTIONS(3756), 4, anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [111441] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111596] = 4, - ACTIONS(4047), 1, + ACTIONS(3709), 4, anon_sym_COMMA, - ACTIONS(4049), 1, - anon_sym_RBRACE, - STATE(2250), 1, - aux_sym_dict_pattern_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111452] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111610] = 4, - ACTIONS(2630), 1, - anon_sym_RPAREN, - ACTIONS(4051), 1, + ACTIONS(3707), 4, anon_sym_COMMA, - STATE(2375), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111463] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111624] = 4, - ACTIONS(1341), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(3764), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2256), 1, - aux_sym_dictionary_repeat1, + anon_sym_as, + anon_sym_PIPE, + [111474] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111638] = 4, - ACTIONS(2632), 1, - anon_sym_RBRACK, - ACTIONS(4055), 1, + ACTIONS(3701), 4, anon_sym_COMMA, - STATE(2446), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111485] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111652] = 4, - ACTIONS(2672), 1, + ACTIONS(3841), 4, anon_sym_RPAREN, - ACTIONS(4057), 1, anon_sym_COMMA, - STATE(2375), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [111496] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111666] = 4, - ACTIONS(2674), 1, - anon_sym_RBRACK, - ACTIONS(4059), 1, + ACTIONS(3703), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2446), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [111507] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111680] = 4, - ACTIONS(1447), 1, - anon_sym_COLON, - ACTIONS(4061), 1, + ACTIONS(3861), 4, anon_sym_COMMA, - STATE(2275), 1, - aux_sym_with_clause_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111518] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111694] = 4, - ACTIONS(4063), 1, + ACTIONS(3866), 4, anon_sym_COMMA, - ACTIONS(4065), 1, - anon_sym_RBRACE, - STATE(2420), 1, - aux_sym_dict_pattern_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111529] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111708] = 4, - ACTIONS(4067), 1, + ACTIONS(3682), 4, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_RBRACE, - STATE(2420), 1, - aux_sym_dict_pattern_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111540] = 4, + ACTIONS(4038), 1, + anon_sym_RPAREN, + ACTIONS(4040), 1, + anon_sym_COMMA, + STATE(2376), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111722] = 4, - ACTIONS(4071), 1, - anon_sym_COMMA, - ACTIONS(4073), 1, - anon_sym_RBRACE, - STATE(2420), 1, - aux_sym_dict_pattern_repeat1, + [111554] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111736] = 4, - ACTIONS(4075), 1, + ACTIONS(1633), 3, anon_sym_COMMA, - ACTIONS(4077), 1, - anon_sym_RBRACE, - STATE(2420), 1, - aux_sym_dict_pattern_repeat1, + anon_sym_COLON, + anon_sym_EQ, + [111564] = 4, + ACTIONS(4042), 1, + anon_sym_COMMA, + ACTIONS(4044), 1, + anon_sym_in, + STATE(2260), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111750] = 4, - ACTIONS(1291), 1, - anon_sym_RPAREN, - ACTIONS(4079), 1, + [111578] = 4, + ACTIONS(4042), 1, anon_sym_COMMA, - STATE(2266), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4046), 1, + anon_sym_in, + STATE(2260), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111764] = 4, - ACTIONS(2680), 1, - anon_sym_RPAREN, - ACTIONS(4081), 1, - anon_sym_COMMA, - STATE(2375), 1, - aux_sym_case_clause_repeat1, + [111592] = 4, + ACTIONS(4048), 1, + anon_sym_SEMI, + ACTIONS(4050), 1, + sym__newline, + STATE(2272), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111778] = 4, - ACTIONS(4083), 1, + [111606] = 4, + ACTIONS(3334), 1, anon_sym_COMMA, - ACTIONS(4086), 1, + ACTIONS(3336), 1, anon_sym_RBRACE, - STATE(2256), 1, + STATE(2259), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111792] = 2, + [111620] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 3, + ACTIONS(3643), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [111802] = 4, - ACTIONS(4088), 1, + anon_sym_RBRACK, + [111630] = 4, + ACTIONS(2714), 1, + sym_identifier, + ACTIONS(4052), 1, + anon_sym_import, + STATE(2712), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111644] = 4, + ACTIONS(2974), 1, + anon_sym_RPAREN, + ACTIONS(3048), 1, anon_sym_COMMA, - ACTIONS(4091), 1, - anon_sym_COLON, - STATE(2258), 1, - aux_sym__parameters_repeat1, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111816] = 3, - ACTIONS(1682), 1, - anon_sym_except, + [111658] = 4, + ACTIONS(3499), 1, + anon_sym_RBRACE, + ACTIONS(4054), 1, + anon_sym_COMMA, + STATE(2248), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 2, - anon_sym_except_STAR, - anon_sym_finally, - [111828] = 4, - ACTIONS(4093), 1, - anon_sym_SEMI, - ACTIONS(4095), 1, + [111672] = 4, + ACTIONS(617), 1, sym__newline, - STATE(2268), 1, + ACTIONS(4057), 1, + anon_sym_SEMI, + STATE(2360), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111842] = 3, - ACTIONS(3894), 1, - anon_sym_as, + [111686] = 4, + ACTIONS(4059), 1, + anon_sym_RPAREN, + ACTIONS(4061), 1, + anon_sym_COMMA, + STATE(2316), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4021), 2, - anon_sym_RPAREN, + [111700] = 4, + ACTIONS(3048), 1, anon_sym_COMMA, - [111854] = 4, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3796), 1, - anon_sym_PIPE, - ACTIONS(4097), 1, - anon_sym_COLON, + ACTIONS(3113), 1, + anon_sym_RPAREN, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111868] = 2, + [111714] = 3, + ACTIONS(3190), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3918), 3, + ACTIONS(3188), 2, sym__newline, anon_sym_SEMI, + [111726] = 4, + ACTIONS(3048), 1, anon_sym_COMMA, - [111878] = 4, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3060), 1, + ACTIONS(4063), 1, anon_sym_RPAREN, - STATE(2254), 1, + STATE(2308), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111892] = 3, - ACTIONS(3541), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [111740] = 4, + ACTIONS(3048), 1, + anon_sym_COMMA, + ACTIONS(4065), 1, + anon_sym_RPAREN, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3543), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [111904] = 4, - ACTIONS(3490), 1, - anon_sym_RPAREN, - ACTIONS(4099), 1, + [111754] = 4, + ACTIONS(4042), 1, anon_sym_COMMA, - STATE(2266), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4067), 1, + anon_sym_in, + STATE(2260), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111918] = 4, - ACTIONS(3393), 1, + [111768] = 4, + ACTIONS(4069), 1, anon_sym_COMMA, - ACTIONS(3395), 1, - anon_sym_RBRACE, - STATE(2271), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4071), 1, + anon_sym_COLON, + STATE(2348), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111932] = 4, - ACTIONS(629), 1, + [111782] = 4, + ACTIONS(643), 1, sym__newline, - ACTIONS(4102), 1, + ACTIONS(4073), 1, anon_sym_SEMI, - STATE(2400), 1, + STATE(2360), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111946] = 4, - ACTIONS(4104), 1, + [111796] = 4, + ACTIONS(1331), 1, + anon_sym_RBRACE, + ACTIONS(4075), 1, anon_sym_COMMA, - ACTIONS(4106), 1, - anon_sym_COLON, - STATE(2249), 1, - aux_sym_with_clause_repeat1, + STATE(2438), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111960] = 4, - ACTIONS(4108), 1, + [111810] = 4, + ACTIONS(1311), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, anon_sym_COMMA, - ACTIONS(4110), 1, + STATE(2438), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111824] = 4, + ACTIONS(959), 1, anon_sym_in, - STATE(2346), 1, + ACTIONS(4079), 1, + anon_sym_COMMA, + STATE(2459), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111974] = 4, - ACTIONS(1307), 1, - anon_sym_RBRACE, - ACTIONS(4112), 1, + [111838] = 3, + ACTIONS(4083), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4081), 2, + sym__newline, + anon_sym_SEMI, + [111850] = 4, + ACTIONS(3326), 1, anon_sym_COMMA, - STATE(2256), 1, + ACTIONS(3328), 1, + anon_sym_RBRACE, + STATE(2354), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111988] = 4, - ACTIONS(3729), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_COLON, - STATE(2770), 1, - sym_argument_list, + [111864] = 4, + ACTIONS(3196), 1, + anon_sym_RPAREN, + ACTIONS(4085), 1, + anon_sym_COMMA, + STATE(2263), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111878] = 3, + ACTIONS(4088), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112002] = 4, - ACTIONS(3062), 1, + ACTIONS(4000), 2, + anon_sym_COMMA, + anon_sym_COLON, + [111890] = 4, + ACTIONS(3050), 1, anon_sym_RPAREN, - ACTIONS(3064), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - STATE(2282), 1, + STATE(2276), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112016] = 4, - ACTIONS(4116), 1, + [111904] = 4, + ACTIONS(4090), 1, anon_sym_RPAREN, - ACTIONS(4118), 1, + ACTIONS(4092), 1, anon_sym_COMMA, - STATE(2284), 1, + STATE(2278), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112030] = 4, - ACTIONS(4120), 1, + [111918] = 4, + ACTIONS(2871), 1, + anon_sym_RBRACK, + ACTIONS(4094), 1, anon_sym_COMMA, - ACTIONS(4123), 1, - anon_sym_COLON, - STATE(2275), 1, - aux_sym_with_clause_repeat1, + STATE(2267), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112044] = 4, - ACTIONS(2640), 1, - anon_sym_RPAREN, - ACTIONS(4125), 1, + [111932] = 4, + ACTIONS(4097), 1, anon_sym_COMMA, - STATE(2375), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4099), 1, + anon_sym_COLON, + STATE(2356), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112058] = 4, - ACTIONS(3246), 1, + [111946] = 4, + ACTIONS(3322), 1, anon_sym_COMMA, - ACTIONS(3248), 1, + ACTIONS(3324), 1, anon_sym_RBRACK, - STATE(2287), 1, + STATE(2281), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112072] = 3, - ACTIONS(3556), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [111960] = 3, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3558), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112084] = 4, - ACTIONS(3374), 1, + ACTIONS(4000), 2, anon_sym_COMMA, - ACTIONS(3376), 1, - anon_sym_RBRACE, - STATE(2245), 1, - aux_sym_dictionary_repeat1, + anon_sym_COLON, + [111972] = 4, + ACTIONS(1261), 1, + anon_sym_RPAREN, + ACTIONS(4101), 1, + anon_sym_COMMA, + STATE(2263), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112098] = 3, - ACTIONS(1698), 1, - anon_sym_except, + [111986] = 4, + ACTIONS(645), 1, + sym__newline, + ACTIONS(4103), 1, + anon_sym_SEMI, + STATE(2360), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 2, - anon_sym_except_STAR, - anon_sym_finally, - [112110] = 3, - ACTIONS(3648), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [112000] = 4, + ACTIONS(1269), 1, + anon_sym_RBRACE, + ACTIONS(4105), 1, + anon_sym_COMMA, + STATE(2248), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3650), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112122] = 4, - ACTIONS(1201), 1, + [112014] = 4, + ACTIONS(1239), 1, anon_sym_RPAREN, - ACTIONS(4127), 1, + ACTIONS(4107), 1, anon_sym_COMMA, - STATE(2438), 1, + STATE(2496), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112136] = 4, - ACTIONS(4129), 1, + [112028] = 4, + ACTIONS(2962), 1, anon_sym_COMMA, - ACTIONS(4131), 1, + ACTIONS(2974), 1, anon_sym_RBRACE, - STATE(2420), 1, - aux_sym_dict_pattern_repeat1, + STATE(2273), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112150] = 4, - ACTIONS(1203), 1, + [112042] = 4, + ACTIONS(1233), 1, anon_sym_RPAREN, - ACTIONS(4133), 1, + ACTIONS(4109), 1, anon_sym_COMMA, - STATE(2438), 1, + STATE(2496), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112164] = 4, - ACTIONS(2875), 1, - anon_sym_RBRACK, - ACTIONS(4135), 1, + [112056] = 4, + ACTIONS(4042), 1, anon_sym_COMMA, - STATE(2285), 1, + ACTIONS(4111), 1, + anon_sym_in, + STATE(2260), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112178] = 4, - ACTIONS(4138), 1, + [112070] = 4, + ACTIONS(1235), 1, + anon_sym_RPAREN, + ACTIONS(4113), 1, anon_sym_COMMA, - ACTIONS(4140), 1, + STATE(2496), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112084] = 4, + ACTIONS(4042), 1, + anon_sym_COMMA, + ACTIONS(4115), 1, + anon_sym_in, + STATE(2260), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112098] = 4, + ACTIONS(4117), 1, + anon_sym_COMMA, + ACTIONS(4119), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2498), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112192] = 4, - ACTIONS(4142), 1, + [112112] = 4, + ACTIONS(4121), 1, anon_sym_COMMA, - ACTIONS(4144), 1, + ACTIONS(4123), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2498), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112206] = 3, - ACTIONS(3566), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [112126] = 4, + ACTIONS(3046), 1, + anon_sym_RPAREN, + ACTIONS(3048), 1, + anon_sym_COMMA, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3568), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112218] = 4, - ACTIONS(3364), 1, + [112140] = 4, + ACTIONS(1245), 1, + anon_sym_RPAREN, + ACTIONS(4125), 1, anon_sym_COMMA, - ACTIONS(3366), 1, + STATE(2496), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112154] = 4, + ACTIONS(3450), 1, + anon_sym_COMMA, + ACTIONS(3452), 1, anon_sym_RBRACE, - STATE(2421), 1, + STATE(2258), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112232] = 4, - ACTIONS(3435), 1, - sym_identifier, - STATE(2135), 1, - sym_dotted_name, - STATE(2306), 1, - sym_aliased_import, + [112168] = 4, + ACTIONS(993), 1, + anon_sym_RBRACK, + ACTIONS(4127), 1, + anon_sym_COMMA, + STATE(2484), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112246] = 4, - ACTIONS(3684), 1, - anon_sym_COLON, - ACTIONS(4146), 1, - anon_sym_RBRACE, - STATE(2603), 1, - sym_format_specifier, + [112182] = 4, + ACTIONS(4129), 1, + anon_sym_SEMI, + ACTIONS(4131), 1, + sym__newline, + STATE(2249), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112260] = 4, - ACTIONS(1996), 1, + [112196] = 3, + ACTIONS(3975), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3983), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [112208] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3985), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [112218] = 4, + ACTIONS(3983), 1, + anon_sym_RBRACK, + ACTIONS(4133), 1, + anon_sym_COMMA, + STATE(2289), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112232] = 4, + ACTIONS(2656), 1, anon_sym_RPAREN, - ACTIONS(4148), 1, + ACTIONS(4136), 1, anon_sym_COMMA, - STATE(2373), 1, - aux_sym__patterns_repeat1, + STATE(2301), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112246] = 4, + ACTIONS(3048), 1, + anon_sym_COMMA, + ACTIONS(4138), 1, + anon_sym_RPAREN, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112274] = 4, - ACTIONS(3790), 1, + [112260] = 4, + ACTIONS(3728), 1, anon_sym_DOT, - ACTIONS(3796), 1, + ACTIONS(3734), 1, anon_sym_PIPE, - ACTIONS(4150), 1, + ACTIONS(4140), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112288] = 4, - ACTIONS(4152), 1, - anon_sym_SEMI, - ACTIONS(4154), 1, - sym__newline, - STATE(2308), 1, - aux_sym__simple_statements_repeat1, + [112274] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112302] = 4, - ACTIONS(3912), 1, - anon_sym_RPAREN, - ACTIONS(4156), 1, - anon_sym_COMMA, - STATE(2419), 1, - aux_sym__import_list_repeat1, + ACTIONS(2458), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [112284] = 4, + ACTIONS(3728), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_PIPE, + ACTIONS(4142), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112316] = 4, - ACTIONS(3912), 1, - anon_sym_RPAREN, - ACTIONS(4158), 1, + [112298] = 4, + ACTIONS(1261), 1, + anon_sym_RBRACK, + ACTIONS(4144), 1, anon_sym_COMMA, - STATE(2419), 1, - aux_sym__import_list_repeat1, + STATE(2296), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112330] = 4, - ACTIONS(4160), 1, + [112312] = 4, + ACTIONS(3196), 1, + anon_sym_RBRACK, + ACTIONS(4146), 1, anon_sym_COMMA, - ACTIONS(4162), 1, - anon_sym_RBRACE, - STATE(2420), 1, - aux_sym_dict_pattern_repeat1, + STATE(2296), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112344] = 4, - ACTIONS(3022), 1, - anon_sym_RPAREN, - ACTIONS(3024), 1, - anon_sym_COMMA, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + [112326] = 3, + ACTIONS(3639), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3641), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112338] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112358] = 4, - ACTIONS(4164), 1, - anon_sym_SEMI, - ACTIONS(4166), 1, + ACTIONS(2445), 3, sym__newline, - STATE(2310), 1, - aux_sym__simple_statements_repeat1, + anon_sym_SEMI, + anon_sym_in, + [112348] = 4, + ACTIONS(4149), 1, + anon_sym_COMMA, + ACTIONS(4151), 1, + anon_sym_RBRACE, + STATE(2435), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112372] = 2, + [112362] = 4, + ACTIONS(4153), 1, + anon_sym_COMMA, + ACTIONS(4155), 1, + anon_sym_RBRACE, + STATE(2312), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2445), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [112382] = 4, - ACTIONS(1173), 1, + [112376] = 4, + ACTIONS(3983), 1, anon_sym_RPAREN, - ACTIONS(4168), 1, + ACTIONS(4157), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + STATE(2301), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112390] = 4, + ACTIONS(3728), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_PIPE, + ACTIONS(4160), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112396] = 2, + [112404] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3971), 3, + ACTIONS(3985), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [112406] = 4, - ACTIONS(3024), 1, + [112414] = 4, + ACTIONS(3048), 1, anon_sym_COMMA, - ACTIONS(3072), 1, + ACTIONS(4162), 1, anon_sym_RPAREN, - STATE(2254), 1, + STATE(2308), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112420] = 2, + [112428] = 3, + ACTIONS(3969), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1630), 3, + ACTIONS(3983), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [112430] = 4, - ACTIONS(3450), 1, + [112440] = 4, + ACTIONS(4164), 1, anon_sym_COMMA, - ACTIONS(3452), 1, + ACTIONS(4166), 1, anon_sym_RBRACE, - STATE(2319), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112444] = 2, + STATE(2435), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3923), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, [112454] = 4, - ACTIONS(3347), 1, + ACTIONS(2660), 1, + anon_sym_RPAREN, + ACTIONS(4168), 1, anon_sym_COMMA, - ACTIONS(3349), 1, - anon_sym_RBRACE, - STATE(2313), 1, - aux_sym_dictionary_repeat1, + STATE(2301), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112468] = 4, - ACTIONS(627), 1, - sym__newline, + ACTIONS(1269), 1, + anon_sym_RPAREN, ACTIONS(4170), 1, - anon_sym_SEMI, - STATE(2400), 1, - aux_sym__simple_statements_repeat1, + anon_sym_COMMA, + STATE(2407), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112482] = 4, - ACTIONS(1187), 1, - anon_sym_RPAREN, + ACTIONS(2670), 1, + anon_sym_RBRACK, ACTIONS(4172), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + STATE(2289), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112496] = 4, - ACTIONS(633), 1, - sym__newline, + ACTIONS(3728), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_PIPE, ACTIONS(4174), 1, - anon_sym_SEMI, - STATE(2400), 1, - aux_sym__simple_statements_repeat1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112510] = 4, - ACTIONS(1291), 1, + ACTIONS(2646), 1, anon_sym_RBRACK, ACTIONS(4176), 1, anon_sym_COMMA, - STATE(2428), 1, - aux_sym__collection_elements_repeat1, + STATE(2289), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112524] = 2, + [112524] = 4, + ACTIONS(4178), 1, + anon_sym_COMMA, + ACTIONS(4180), 1, + anon_sym_RBRACE, + STATE(2435), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2880), 3, + [112538] = 4, + ACTIONS(2634), 1, anon_sym_RPAREN, + ACTIONS(4182), 1, anon_sym_COMMA, - anon_sym_EQ, - [112534] = 4, - ACTIONS(1319), 1, - anon_sym_RBRACE, - ACTIONS(4178), 1, - anon_sym_COMMA, - STATE(2256), 1, - aux_sym_dictionary_repeat1, + STATE(2301), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112548] = 4, - ACTIONS(3024), 1, + [112552] = 4, + ACTIONS(4184), 1, anon_sym_COMMA, - ACTIONS(4180), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4186), 1, + anon_sym_RBRACE, + STATE(2435), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112562] = 4, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(4182), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + [112566] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, + ACTIONS(3985), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, [112576] = 4, - ACTIONS(3078), 1, + ACTIONS(1866), 1, anon_sym_RPAREN, - ACTIONS(3080), 1, + ACTIONS(4188), 1, anon_sym_COMMA, - STATE(2324), 1, - aux_sym_argument_list_repeat1, + STATE(2375), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112590] = 4, - ACTIONS(4184), 1, - anon_sym_RPAREN, - ACTIONS(4186), 1, + ACTIONS(4042), 1, anon_sym_COMMA, - STATE(2326), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4190), 1, + anon_sym_in, + STATE(2260), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112604] = 4, - ACTIONS(3204), 1, - anon_sym_RPAREN, - ACTIONS(4188), 1, + ACTIONS(4192), 1, anon_sym_COMMA, - STATE(2318), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(4194), 1, + anon_sym_RBRACE, + STATE(2306), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112618] = 4, - ACTIONS(1305), 1, - anon_sym_RBRACE, - ACTIONS(4191), 1, + ACTIONS(1261), 1, + anon_sym_COLON, + ACTIONS(4196), 1, anon_sym_COMMA, - STATE(2256), 1, - aux_sym_dictionary_repeat1, + STATE(2320), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112632] = 4, - ACTIONS(3268), 1, + ACTIONS(3196), 1, + anon_sym_COLON, + ACTIONS(4198), 1, anon_sym_COMMA, - ACTIONS(3270), 1, - anon_sym_RBRACK, - STATE(2329), 1, - aux_sym_subscript_repeat1, + STATE(2320), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112646] = 4, - ACTIONS(1996), 1, - anon_sym_RBRACK, - ACTIONS(4193), 1, - anon_sym_COMMA, - STATE(2285), 1, - aux_sym__patterns_repeat1, + [112646] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112660] = 4, - ACTIONS(4195), 1, + ACTIONS(3643), 3, anon_sym_COMMA, - ACTIONS(4197), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + anon_sym_as, + anon_sym_RBRACE, + [112656] = 4, + ACTIONS(2690), 1, + anon_sym_RPAREN, + ACTIONS(4201), 1, + anon_sym_COMMA, + STATE(2301), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112674] = 4, - ACTIONS(3038), 1, - anon_sym_RPAREN, - ACTIONS(3040), 1, - anon_sym_COMMA, - STATE(2335), 1, - aux_sym_argument_list_repeat1, + [112670] = 3, + ACTIONS(3645), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3647), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112682] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112688] = 4, - ACTIONS(1213), 1, + ACTIONS(3643), 3, anon_sym_RPAREN, - ACTIONS(4199), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, + anon_sym_as, + [112692] = 3, + ACTIONS(3511), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [112702] = 4, - ACTIONS(4201), 1, - anon_sym_RPAREN, + ACTIONS(3513), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112704] = 3, + ACTIONS(3468), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3470), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112716] = 3, + ACTIONS(3462), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3464), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112728] = 4, ACTIONS(4203), 1, - anon_sym_COMMA, - STATE(2338), 1, - aux_sym_argument_list_repeat1, + sym__newline, + ACTIONS(4205), 1, + sym__indent, + STATE(776), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112716] = 4, - ACTIONS(1215), 1, - anon_sym_RPAREN, - ACTIONS(4205), 1, - anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + [112742] = 4, + ACTIONS(3936), 1, + sym_identifier, + STATE(2371), 1, + sym_dotted_name, + STATE(2561), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112730] = 4, + [112756] = 3, + ACTIONS(3606), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3608), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112768] = 3, + ACTIONS(3617), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3619), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112780] = 4, ACTIONS(4207), 1, anon_sym_COMMA, ACTIONS(4209), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2498), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112744] = 4, + [112794] = 3, + ACTIONS(1718), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 2, + anon_sym_except_STAR, + anon_sym_finally, + [112806] = 4, ACTIONS(4211), 1, - anon_sym_COMMA, + anon_sym_SEMI, ACTIONS(4213), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + sym__newline, + STATE(2355), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112758] = 4, + [112820] = 4, ACTIONS(4215), 1, anon_sym_COMMA, ACTIONS(4217), 1, anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112772] = 4, - ACTIONS(3278), 1, - anon_sym_COMMA, - ACTIONS(3280), 1, - anon_sym_RBRACK, - STATE(2343), 1, + STATE(2498), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112786] = 4, + [112834] = 4, ACTIONS(4219), 1, - sym__newline, + anon_sym_RPAREN, ACTIONS(4221), 1, - sym__indent, - STATE(804), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112800] = 4, - ACTIONS(3684), 1, - anon_sym_COLON, - ACTIONS(4223), 1, - anon_sym_RBRACE, - STATE(2653), 1, - sym_format_specifier, + anon_sym_COMMA, + STATE(2336), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112814] = 4, - ACTIONS(3204), 1, - anon_sym_RBRACK, - ACTIONS(4225), 1, + [112848] = 4, + ACTIONS(4042), 1, anon_sym_COMMA, - STATE(2333), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(4224), 1, + anon_sym_in, + STATE(2260), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112828] = 4, - ACTIONS(617), 1, - sym__newline, - ACTIONS(4228), 1, - anon_sym_SEMI, - STATE(2400), 1, - aux_sym__simple_statements_repeat1, + [112862] = 4, + ACTIONS(3736), 1, + anon_sym_LPAREN, + ACTIONS(4226), 1, + anon_sym_COLON, + STATE(2694), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112842] = 4, - ACTIONS(1175), 1, + [112876] = 4, + ACTIONS(4228), 1, anon_sym_RPAREN, ACTIONS(4230), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + STATE(2339), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112856] = 4, - ACTIONS(3120), 1, - anon_sym_RPAREN, - ACTIONS(3122), 1, + [112890] = 4, + ACTIONS(3048), 1, anon_sym_COMMA, - STATE(2479), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3111), 1, + anon_sym_RPAREN, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112870] = 4, - ACTIONS(1439), 1, - anon_sym_RPAREN, - ACTIONS(4232), 1, - anon_sym_COMMA, - STATE(2468), 1, - aux_sym_with_clause_repeat1, + [112904] = 4, + ACTIONS(3781), 1, + anon_sym_COLON, + ACTIONS(4233), 1, + anon_sym_RBRACE, + STATE(2722), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112884] = 4, - ACTIONS(1177), 1, - anon_sym_RPAREN, - ACTIONS(4234), 1, - anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + [112918] = 4, + ACTIONS(4235), 1, + sym__newline, + ACTIONS(4237), 1, + sym__indent, + STATE(836), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112898] = 2, + [112932] = 4, + ACTIONS(4203), 1, + sym__newline, + ACTIONS(4205), 1, + sym__indent, + STATE(754), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4236), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [112908] = 4, - ACTIONS(4238), 1, - anon_sym_RPAREN, - ACTIONS(4240), 1, + [112946] = 4, + ACTIONS(3499), 1, + anon_sym_RBRACK, + ACTIONS(4239), 1, anon_sym_COMMA, - STATE(2292), 1, - aux_sym__patterns_repeat1, + STATE(2344), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112922] = 4, + [112960] = 4, ACTIONS(4242), 1, - anon_sym_SEMI, + anon_sym_COMMA, ACTIONS(4244), 1, - sym__newline, - STATE(2350), 1, - aux_sym__simple_statements_repeat1, + anon_sym_COLON, + STATE(2421), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112936] = 4, - ACTIONS(4246), 1, + [112974] = 4, + ACTIONS(4042), 1, anon_sym_COMMA, - ACTIONS(4248), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + ACTIONS(4246), 1, + anon_sym_in, + STATE(2260), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112950] = 4, + [112988] = 4, + ACTIONS(4248), 1, + anon_sym_RPAREN, ACTIONS(4250), 1, anon_sym_COMMA, - ACTIONS(4252), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112964] = 4, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3089), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + STATE(2423), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112978] = 4, - ACTIONS(2965), 1, - anon_sym_RPAREN, - ACTIONS(3024), 1, + [113002] = 4, + ACTIONS(1441), 1, + anon_sym_COLON, + ACTIONS(4252), 1, anon_sym_COMMA, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + STATE(2426), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112992] = 4, - ACTIONS(959), 1, - anon_sym_in, + [113016] = 4, + ACTIONS(3736), 1, + anon_sym_LPAREN, ACTIONS(4254), 1, - anon_sym_COMMA, - STATE(2424), 1, - aux_sym__patterns_repeat1, + anon_sym_COLON, + STATE(2604), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113006] = 4, - ACTIONS(3382), 1, + [113030] = 4, + ACTIONS(3429), 1, anon_sym_COMMA, - ACTIONS(3384), 1, + ACTIONS(3431), 1, anon_sym_RBRACE, - STATE(2352), 1, + STATE(2363), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113020] = 4, - ACTIONS(1291), 1, - anon_sym_RBRACE, + [113044] = 4, ACTIONS(4256), 1, anon_sym_COMMA, - STATE(2427), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4258), 1, + anon_sym_RBRACK, + STATE(2498), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113034] = 2, + [113058] = 4, + ACTIONS(4260), 1, + anon_sym_COMMA, + ACTIONS(4262), 1, + anon_sym_RBRACK, + STATE(2498), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 3, + [113072] = 4, + ACTIONS(3283), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(3285), 1, anon_sym_RBRACK, - [113044] = 4, - ACTIONS(639), 1, + STATE(2351), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113086] = 4, + ACTIONS(1307), 1, + anon_sym_RBRACE, + ACTIONS(4264), 1, + anon_sym_COMMA, + STATE(2438), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113100] = 4, + ACTIONS(627), 1, sym__newline, - ACTIONS(4258), 1, + ACTIONS(4266), 1, anon_sym_SEMI, - STATE(2400), 1, + STATE(2360), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113058] = 2, + [113114] = 4, + ACTIONS(2951), 1, + anon_sym_COLON, + ACTIONS(4268), 1, + anon_sym_COMMA, + STATE(2440), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1630), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [113068] = 4, - ACTIONS(1327), 1, - anon_sym_RBRACE, - ACTIONS(4260), 1, + [113128] = 4, + ACTIONS(4270), 1, anon_sym_COMMA, - STATE(2256), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4272), 1, + anon_sym_RBRACK, + STATE(2498), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113082] = 4, - ACTIONS(3024), 1, + [113142] = 4, + ACTIONS(4274), 1, anon_sym_COMMA, - ACTIONS(3048), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4276), 1, + anon_sym_RBRACK, + STATE(2498), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113096] = 4, - ACTIONS(3091), 1, - anon_sym_RPAREN, - ACTIONS(3093), 1, + [113156] = 4, + ACTIONS(3223), 1, anon_sym_COMMA, - STATE(2361), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3227), 1, + anon_sym_RBRACK, + STATE(2357), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113110] = 4, - ACTIONS(4262), 1, + [113170] = 4, + ACTIONS(4278), 1, + anon_sym_SEMI, + ACTIONS(4281), 1, + sym__newline, + STATE(2360), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113184] = 4, + ACTIONS(3024), 1, anon_sym_RPAREN, - ACTIONS(4264), 1, + ACTIONS(3026), 1, anon_sym_COMMA, - STATE(2362), 1, + STATE(2443), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113124] = 4, - ACTIONS(3835), 1, + [113198] = 4, + ACTIONS(4283), 1, anon_sym_RPAREN, - ACTIONS(3945), 1, + ACTIONS(4285), 1, anon_sym_COMMA, - STATE(2295), 1, - aux_sym__import_list_repeat1, + STATE(2447), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113138] = 4, - ACTIONS(2953), 1, - anon_sym_COMMA, - ACTIONS(2965), 1, + [113212] = 4, + ACTIONS(1325), 1, anon_sym_RBRACE, - STATE(2348), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4287), 1, + anon_sym_COMMA, + STATE(2438), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113152] = 4, - ACTIONS(3274), 1, + [113226] = 4, + ACTIONS(3259), 1, anon_sym_COMMA, - ACTIONS(3276), 1, + ACTIONS(3261), 1, anon_sym_RBRACK, - STATE(2365), 1, + STATE(2451), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113166] = 3, - ACTIONS(3177), 1, - anon_sym_from, + [113240] = 4, + ACTIONS(3781), 1, + anon_sym_COLON, + ACTIONS(4289), 1, + anon_sym_RBRACE, + STATE(2703), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3175), 2, - sym__newline, - anon_sym_SEMI, - [113178] = 4, - ACTIONS(985), 1, + [113254] = 4, + ACTIONS(3931), 1, + anon_sym_RPAREN, + ACTIONS(4291), 1, + anon_sym_COMMA, + STATE(2366), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113268] = 4, + ACTIONS(4294), 1, + anon_sym_COMMA, + ACTIONS(4296), 1, anon_sym_RBRACK, - ACTIONS(4266), 1, + STATE(2498), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113282] = 4, + ACTIONS(4298), 1, anon_sym_COMMA, - STATE(2240), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(4300), 1, + anon_sym_RBRACK, + STATE(2498), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113192] = 4, - ACTIONS(1225), 1, + [113296] = 4, + ACTIONS(3036), 1, anon_sym_RPAREN, - ACTIONS(4268), 1, + ACTIONS(3038), 1, anon_sym_COMMA, - STATE(2438), 1, + STATE(2380), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113206] = 4, - ACTIONS(1227), 1, + [113310] = 4, + ACTIONS(4302), 1, anon_sym_RPAREN, - ACTIONS(4270), 1, + ACTIONS(4304), 1, anon_sym_COMMA, - STATE(2438), 1, + STATE(2382), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113220] = 4, - ACTIONS(2714), 1, - sym_identifier, - ACTIONS(4272), 1, - anon_sym_import, - STATE(2732), 1, - sym_dotted_name, + [113324] = 3, + ACTIONS(3994), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113234] = 4, - ACTIONS(4274), 1, + ACTIONS(3925), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4276), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + [113336] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113248] = 4, - ACTIONS(4278), 1, + ACTIONS(3925), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [113346] = 4, + ACTIONS(3304), 1, anon_sym_COMMA, - ACTIONS(4280), 1, + ACTIONS(3306), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2385), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113262] = 4, - ACTIONS(4219), 1, - sym__newline, - ACTIONS(4221), 1, - sym__indent, - STATE(730), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113276] = 2, - ACTIONS(3), 2, + [113360] = 3, + ACTIONS(3576), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3971), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [113286] = 4, - ACTIONS(2951), 1, + ACTIONS(3578), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113372] = 4, + ACTIONS(2871), 1, anon_sym_RPAREN, - ACTIONS(4282), 1, - anon_sym_COMMA, - STATE(2486), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113300] = 4, - ACTIONS(4284), 1, + ACTIONS(4306), 1, anon_sym_COMMA, - ACTIONS(4287), 1, - anon_sym_COLON, - STATE(2369), 1, - aux_sym_match_statement_repeat1, + STATE(2375), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113314] = 4, - ACTIONS(4289), 1, + [113386] = 4, + ACTIONS(1241), 1, anon_sym_RPAREN, - ACTIONS(4291), 1, + ACTIONS(4309), 1, anon_sym_COMMA, - STATE(2383), 1, + STATE(2496), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113328] = 3, - ACTIONS(1702), 1, + [113400] = 3, + ACTIONS(1722), 1, anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 2, + ACTIONS(1720), 2, anon_sym_except_STAR, anon_sym_finally, - [113340] = 4, - ACTIONS(1023), 1, - anon_sym_RBRACK, - ACTIONS(4293), 1, + [113412] = 4, + ACTIONS(2951), 1, + anon_sym_RPAREN, + ACTIONS(4311), 1, anon_sym_COMMA, - STATE(2240), 1, - aux_sym_type_parameter_repeat1, + STATE(2336), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113426] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113354] = 4, - ACTIONS(2875), 1, + ACTIONS(1633), 3, anon_sym_RPAREN, - ACTIONS(4295), 1, anon_sym_COMMA, - STATE(2373), 1, - aux_sym__patterns_repeat1, + anon_sym_EQ, + [113436] = 4, + ACTIONS(1219), 1, + anon_sym_RPAREN, + ACTIONS(4313), 1, + anon_sym_COMMA, + STATE(2496), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113368] = 4, - ACTIONS(4298), 1, - anon_sym_SEMI, - ACTIONS(4300), 1, - sym__newline, - STATE(2498), 1, - aux_sym__simple_statements_repeat1, + [113450] = 4, + ACTIONS(1243), 1, + anon_sym_RPAREN, + ACTIONS(4315), 1, + anon_sym_COMMA, + STATE(2496), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113382] = 4, - ACTIONS(4021), 1, + [113464] = 4, + ACTIONS(1247), 1, anon_sym_RPAREN, - ACTIONS(4302), 1, + ACTIONS(4317), 1, anon_sym_COMMA, - STATE(2375), 1, - aux_sym_case_clause_repeat1, + STATE(2496), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113396] = 4, - ACTIONS(4305), 1, - anon_sym_SEMI, - ACTIONS(4307), 1, - sym__newline, - STATE(2431), 1, - aux_sym__simple_statements_repeat1, + [113478] = 4, + ACTIONS(1866), 1, + anon_sym_RBRACK, + ACTIONS(4319), 1, + anon_sym_COMMA, + STATE(2267), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113410] = 4, - ACTIONS(3024), 1, + [113492] = 4, + ACTIONS(4321), 1, anon_sym_COMMA, - ACTIONS(3099), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4323), 1, + anon_sym_RBRACK, + STATE(2498), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113424] = 4, - ACTIONS(2965), 1, - anon_sym_RBRACK, - ACTIONS(3004), 1, + [113506] = 4, + ACTIONS(4325), 1, anon_sym_COMMA, - STATE(2311), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4327), 1, + anon_sym_RBRACK, + STATE(2498), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113438] = 4, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(4309), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + [113520] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113452] = 4, - ACTIONS(3330), 1, + ACTIONS(2886), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3332), 1, - anon_sym_RBRACE, - STATE(2386), 1, - aux_sym_dictionary_repeat1, + anon_sym_EQ, + [113530] = 4, + ACTIONS(985), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, + anon_sym_COMMA, + STATE(2484), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113466] = 4, - ACTIONS(3024), 1, + [113544] = 4, + ACTIONS(1269), 1, + anon_sym_RBRACK, + ACTIONS(4331), 1, anon_sym_COMMA, - ACTIONS(4311), 1, - anon_sym_RPAREN, - STATE(2254), 1, + STATE(2344), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113480] = 4, - ACTIONS(4238), 1, - anon_sym_RBRACK, - ACTIONS(4313), 1, + [113558] = 4, + ACTIONS(3896), 1, + anon_sym_RPAREN, + ACTIONS(4333), 1, anon_sym_COMMA, - STATE(2321), 1, - aux_sym__patterns_repeat1, + STATE(2366), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113494] = 4, - ACTIONS(1155), 1, + [113572] = 4, + ACTIONS(3896), 1, anon_sym_RPAREN, - ACTIONS(4315), 1, + ACTIONS(4335), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + STATE(2366), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113508] = 4, - ACTIONS(997), 1, + [113586] = 4, + ACTIONS(2974), 1, anon_sym_RBRACK, - ACTIONS(4317), 1, + ACTIONS(3069), 1, anon_sym_COMMA, - STATE(2240), 1, - aux_sym_type_parameter_repeat1, + STATE(2388), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113522] = 3, - ACTIONS(4321), 1, - anon_sym_in, + [113600] = 3, + ACTIONS(1700), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, - sym__newline, - anon_sym_SEMI, - [113534] = 4, - ACTIONS(1337), 1, - anon_sym_RBRACE, - ACTIONS(4323), 1, - anon_sym_COMMA, - STATE(2256), 1, - aux_sym_dictionary_repeat1, + ACTIONS(1702), 2, + anon_sym_except_STAR, + anon_sym_finally, + [113612] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113548] = 4, - ACTIONS(4219), 1, + ACTIONS(4337), 3, sym__newline, - ACTIONS(4221), 1, - sym__indent, - STATE(735), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113562] = 4, + anon_sym_SEMI, + anon_sym_COMMA, + [113622] = 4, ACTIONS(3101), 1, anon_sym_RPAREN, ACTIONS(3103), 1, anon_sym_COMMA, - STATE(2394), 1, + STATE(2274), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113576] = 4, - ACTIONS(4325), 1, - anon_sym_RPAREN, - ACTIONS(4327), 1, + [113636] = 4, + ACTIONS(3291), 1, anon_sym_COMMA, - STATE(2395), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3293), 1, + anon_sym_RBRACK, + STATE(2367), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113590] = 4, - ACTIONS(4329), 1, - sym__newline, - ACTIONS(4331), 1, - sym__indent, - STATE(802), 1, - sym__match_block, + [113650] = 3, + ACTIONS(4339), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113604] = 4, - ACTIONS(3282), 1, + ACTIONS(4000), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3284), 1, - anon_sym_RBRACK, - STATE(2398), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113618] = 4, - ACTIONS(2951), 1, - anon_sym_COLON, - ACTIONS(4333), 1, + [113662] = 4, + ACTIONS(4341), 1, + anon_sym_RPAREN, + ACTIONS(4343), 1, anon_sym_COMMA, - STATE(2258), 1, - aux_sym__parameters_repeat1, + STATE(2283), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113632] = 4, - ACTIONS(4335), 1, + [113676] = 4, + ACTIONS(4345), 1, anon_sym_COMMA, - ACTIONS(4337), 1, - anon_sym_RBRACE, - STATE(2406), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(4347), 1, + anon_sym_COLON, + STATE(2421), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113646] = 4, - ACTIONS(1235), 1, + [113690] = 4, + ACTIONS(3130), 1, anon_sym_RPAREN, - ACTIONS(4339), 1, + ACTIONS(3132), 1, anon_sym_COMMA, - STATE(2438), 1, + STATE(2381), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113660] = 4, - ACTIONS(1237), 1, - anon_sym_RPAREN, - ACTIONS(4341), 1, + [113704] = 4, + ACTIONS(4349), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4351), 1, + anon_sym_RBRACE, + STATE(2411), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113674] = 3, - ACTIONS(4345), 1, - anon_sym_as, + [113718] = 3, + ACTIONS(4004), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4343), 2, + ACTIONS(4000), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [113730] = 4, + ACTIONS(1339), 1, anon_sym_RBRACE, - [113686] = 4, - ACTIONS(4347), 1, + ACTIONS(4353), 1, anon_sym_COMMA, - ACTIONS(4349), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + STATE(2438), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113700] = 4, - ACTIONS(4351), 1, + [113744] = 4, + ACTIONS(4099), 1, + anon_sym_RPAREN, + ACTIONS(4355), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + STATE(2378), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113714] = 4, - ACTIONS(4355), 1, - anon_sym_COMMA, + [113758] = 4, + ACTIONS(641), 1, + sym__newline, ACTIONS(4357), 1, - anon_sym_COLON, - STATE(2369), 1, - aux_sym_match_statement_repeat1, + anon_sym_SEMI, + STATE(2360), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113728] = 4, - ACTIONS(4359), 1, - anon_sym_SEMI, - ACTIONS(4362), 1, - sym__newline, - STATE(2400), 1, - aux_sym__simple_statements_repeat1, + [113772] = 4, + ACTIONS(3386), 1, + anon_sym_COMMA, + ACTIONS(3388), 1, + anon_sym_RBRACE, + STATE(2402), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113742] = 4, - ACTIONS(4329), 1, - sym__newline, - ACTIONS(4331), 1, - sym__indent, - STATE(828), 1, - sym__match_block, + [113786] = 4, + ACTIONS(2630), 1, + anon_sym_RPAREN, + ACTIONS(4359), 1, + anon_sym_COMMA, + STATE(2301), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113756] = 4, - ACTIONS(2652), 1, + [113800] = 4, + ACTIONS(3499), 1, anon_sym_RPAREN, + ACTIONS(4361), 1, + anon_sym_COMMA, + STATE(2407), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113814] = 4, + ACTIONS(2676), 1, + anon_sym_RBRACK, ACTIONS(4364), 1, anon_sym_COMMA, - STATE(2375), 1, + STATE(2289), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113770] = 4, - ACTIONS(4108), 1, + [113828] = 4, + ACTIONS(4042), 1, anon_sym_COMMA, ACTIONS(4366), 1, anon_sym_in, - STATE(2346), 1, + STATE(2260), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113784] = 4, - ACTIONS(2692), 1, + [113842] = 4, + ACTIONS(4059), 1, anon_sym_RBRACK, ACTIONS(4368), 1, anon_sym_COMMA, - STATE(2446), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113798] = 2, + STATE(2383), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2458), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [113808] = 4, + [113856] = 4, ACTIONS(4370), 1, anon_sym_COMMA, ACTIONS(4372), 1, anon_sym_RBRACE, - STATE(2420), 1, + STATE(2435), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113822] = 4, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4377), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + [113870] = 3, + ACTIONS(4376), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113836] = 4, - ACTIONS(3302), 1, + ACTIONS(4374), 2, anon_sym_COMMA, - ACTIONS(3304), 1, - anon_sym_RBRACK, - STATE(2410), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113850] = 4, - ACTIONS(4379), 1, + anon_sym_RBRACE, + [113882] = 4, + ACTIONS(4378), 1, anon_sym_COMMA, - ACTIONS(4381), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + ACTIONS(4380), 1, + anon_sym_RBRACE, + STATE(2435), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113864] = 4, - ACTIONS(4383), 1, + [113896] = 4, + ACTIONS(3048), 1, anon_sym_COMMA, - ACTIONS(4385), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113878] = 3, - ACTIONS(4387), 1, - anon_sym_EQ, + ACTIONS(3091), 1, + anon_sym_RPAREN, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3882), 2, - anon_sym_COMMA, - anon_sym_COLON, - [113890] = 3, - ACTIONS(3537), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3539), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113902] = 4, - ACTIONS(4389), 1, - anon_sym_COMMA, - ACTIONS(4391), 1, - anon_sym_RBRACE, - STATE(2420), 1, - aux_sym_dict_pattern_repeat1, + [113910] = 4, + ACTIONS(4382), 1, + anon_sym_SEMI, + ACTIONS(4384), 1, + sym__newline, + STATE(2404), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113916] = 4, - ACTIONS(3308), 1, + [113924] = 4, + ACTIONS(3817), 1, + anon_sym_RPAREN, + ACTIONS(3992), 1, anon_sym_COMMA, - ACTIONS(3310), 1, - anon_sym_RBRACK, - STATE(2416), 1, - aux_sym_subscript_repeat1, + STATE(2390), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113930] = 4, - ACTIONS(4393), 1, - anon_sym_COMMA, - ACTIONS(4395), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + [113938] = 4, + ACTIONS(4235), 1, + sym__newline, + ACTIONS(4237), 1, + sym__indent, + STATE(742), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113944] = 4, - ACTIONS(4397), 1, + [113952] = 4, + ACTIONS(3048), 1, anon_sym_COMMA, - ACTIONS(4399), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + ACTIONS(4386), 1, + anon_sym_RPAREN, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113958] = 3, - ACTIONS(3947), 1, - anon_sym_as, + [113966] = 4, + ACTIONS(4235), 1, + sym__newline, + ACTIONS(4237), 1, + sym__indent, + STATE(745), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3923), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [113970] = 4, - ACTIONS(2678), 1, + [113980] = 4, + ACTIONS(2606), 1, anon_sym_RPAREN, - ACTIONS(4401), 1, + ACTIONS(4388), 1, anon_sym_COMMA, - STATE(2375), 1, + STATE(2301), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113984] = 4, - ACTIONS(3936), 1, - anon_sym_RPAREN, - ACTIONS(4403), 1, + [113994] = 4, + ACTIONS(4390), 1, anon_sym_COMMA, - STATE(2419), 1, - aux_sym__import_list_repeat1, + ACTIONS(4393), 1, + anon_sym_COLON, + STATE(2421), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113998] = 4, - ACTIONS(4406), 1, - anon_sym_COMMA, - ACTIONS(4409), 1, - anon_sym_RBRACE, - STATE(2420), 1, - aux_sym_dict_pattern_repeat1, + [114008] = 3, + ACTIONS(1726), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114012] = 4, - ACTIONS(1335), 1, - anon_sym_RBRACE, - ACTIONS(4411), 1, + ACTIONS(1724), 2, + anon_sym_except_STAR, + anon_sym_finally, + [114020] = 4, + ACTIONS(1429), 1, + anon_sym_RPAREN, + ACTIONS(4395), 1, anon_sym_COMMA, - STATE(2256), 1, - aux_sym_dictionary_repeat1, + STATE(2339), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114026] = 4, - ACTIONS(2660), 1, - anon_sym_RPAREN, - ACTIONS(4413), 1, + [114034] = 4, + ACTIONS(4397), 1, anon_sym_COMMA, - STATE(2375), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4399), 1, + anon_sym_RBRACK, + STATE(2498), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114040] = 4, - ACTIONS(4415), 1, - anon_sym_RPAREN, - ACTIONS(4417), 1, + [114048] = 4, + ACTIONS(4401), 1, anon_sym_COMMA, - STATE(2337), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4403), 1, + anon_sym_RBRACK, + STATE(2498), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114054] = 4, - ACTIONS(2875), 1, - anon_sym_in, - ACTIONS(4419), 1, + [114062] = 4, + ACTIONS(4228), 1, + anon_sym_COLON, + ACTIONS(4405), 1, anon_sym_COMMA, - STATE(2424), 1, - aux_sym__patterns_repeat1, + STATE(2426), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114068] = 4, - ACTIONS(1293), 1, + [114076] = 4, + ACTIONS(1173), 1, anon_sym_RPAREN, - ACTIONS(4422), 1, + ACTIONS(4408), 1, anon_sym_COMMA, - STATE(2318), 1, - aux_sym_assert_statement_repeat1, + STATE(2496), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114082] = 3, - ACTIONS(4426), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4424), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114094] = 4, - ACTIONS(3490), 1, - anon_sym_RBRACE, - ACTIONS(4428), 1, + [114090] = 4, + ACTIONS(1171), 1, + anon_sym_RPAREN, + ACTIONS(4410), 1, anon_sym_COMMA, - STATE(2427), 1, - aux_sym__collection_elements_repeat1, + STATE(2496), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114108] = 4, - ACTIONS(3490), 1, - anon_sym_RBRACK, - ACTIONS(4431), 1, - anon_sym_COMMA, - STATE(2428), 1, - aux_sym__collection_elements_repeat1, + [114104] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114122] = 4, - ACTIONS(3729), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_COLON, - STATE(2693), 1, - sym_argument_list, + ACTIONS(3945), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [114114] = 4, + ACTIONS(4412), 1, + anon_sym_SEMI, + ACTIONS(4414), 1, + sym__newline, + STATE(2449), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114136] = 4, - ACTIONS(4108), 1, + [114128] = 4, + ACTIONS(3265), 1, anon_sym_COMMA, - ACTIONS(4436), 1, - anon_sym_in, - STATE(2346), 1, - aux_sym__patterns_repeat1, + ACTIONS(3267), 1, + anon_sym_RBRACK, + STATE(2424), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114150] = 4, - ACTIONS(619), 1, - sym__newline, - ACTIONS(4438), 1, - anon_sym_SEMI, - STATE(2400), 1, - aux_sym__simple_statements_repeat1, + [114142] = 4, + ACTIONS(3271), 1, + anon_sym_COMMA, + ACTIONS(3273), 1, + anon_sym_RBRACK, + STATE(2335), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114164] = 2, + [114156] = 4, + ACTIONS(2658), 1, + anon_sym_RPAREN, + ACTIONS(4416), 1, + anon_sym_COMMA, + STATE(2301), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 3, + [114170] = 4, + ACTIONS(4418), 1, anon_sym_RPAREN, + ACTIONS(4420), 1, anon_sym_COMMA, - anon_sym_as, - [114174] = 4, - ACTIONS(4108), 1, - anon_sym_COMMA, - ACTIONS(4440), 1, - anon_sym_in, - STATE(2346), 1, - aux_sym__patterns_repeat1, + STATE(2427), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114188] = 4, - ACTIONS(3024), 1, + [114184] = 4, + ACTIONS(4422), 1, anon_sym_COMMA, - ACTIONS(4442), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4425), 1, + anon_sym_RBRACE, + STATE(2435), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114202] = 4, - ACTIONS(3024), 1, + [114198] = 4, + ACTIONS(3048), 1, anon_sym_COMMA, - ACTIONS(4444), 1, + ACTIONS(3128), 1, anon_sym_RPAREN, - STATE(2254), 1, + STATE(2308), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114216] = 4, - ACTIONS(4446), 1, - anon_sym_SEMI, - ACTIONS(4448), 1, - sym__newline, - STATE(2460), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114230] = 4, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3796), 1, - anon_sym_PIPE, - ACTIONS(4450), 1, - anon_sym_COLON, + [114212] = 4, + ACTIONS(2996), 1, + anon_sym_RPAREN, + ACTIONS(2998), 1, + anon_sym_COMMA, + STATE(2428), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114244] = 4, - ACTIONS(3531), 1, - anon_sym_RPAREN, - ACTIONS(4452), 1, + [114226] = 4, + ACTIONS(4427), 1, anon_sym_COMMA, + ACTIONS(4430), 1, + anon_sym_RBRACE, STATE(2438), 1, - aux_sym_argument_list_repeat1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114258] = 4, - ACTIONS(2610), 1, - anon_sym_RPAREN, - ACTIONS(4455), 1, + [114240] = 4, + ACTIONS(1323), 1, + anon_sym_RBRACE, + ACTIONS(4432), 1, anon_sym_COMMA, - STATE(2375), 1, - aux_sym_case_clause_repeat1, + STATE(2438), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114272] = 4, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3796), 1, - anon_sym_PIPE, - ACTIONS(4457), 1, + [114254] = 4, + ACTIONS(4219), 1, anon_sym_COLON, + ACTIONS(4434), 1, + anon_sym_COMMA, + STATE(2440), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114286] = 4, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3796), 1, - anon_sym_PIPE, - ACTIONS(4459), 1, - anon_sym_COLON, + [114268] = 4, + ACTIONS(629), 1, + sym__newline, + ACTIONS(4437), 1, + anon_sym_SEMI, + STATE(2360), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114300] = 4, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3796), 1, - anon_sym_PIPE, - ACTIONS(4461), 1, - anon_sym_COLON, + [114282] = 4, + ACTIONS(1019), 1, + anon_sym_RBRACK, + ACTIONS(4439), 1, + anon_sym_COMMA, + STATE(2484), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114314] = 4, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3046), 1, + [114296] = 4, + ACTIONS(1213), 1, anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4441), 1, + anon_sym_COMMA, + STATE(2496), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114328] = 3, - ACTIONS(3898), 1, - anon_sym_as, + [114310] = 4, + ACTIONS(3423), 1, + anon_sym_COMMA, + ACTIONS(3425), 1, + anon_sym_RBRACE, + STATE(2456), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4021), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [114340] = 2, + [114324] = 4, + ACTIONS(4443), 1, + anon_sym_SEMI, + ACTIONS(4445), 1, + sym__newline, + STATE(2257), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3971), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [114350] = 4, - ACTIONS(4021), 1, - anon_sym_RBRACK, - ACTIONS(4463), 1, + [114338] = 4, + ACTIONS(3330), 1, anon_sym_COMMA, - STATE(2446), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3332), 1, + anon_sym_RBRACE, + STATE(2439), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114364] = 4, - ACTIONS(3074), 1, + [114352] = 4, + ACTIONS(1203), 1, anon_sym_RPAREN, - ACTIONS(3076), 1, + ACTIONS(4447), 1, anon_sym_COMMA, - STATE(2301), 1, + STATE(2496), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114378] = 4, - ACTIONS(4466), 1, - anon_sym_RPAREN, - ACTIONS(4468), 1, + [114366] = 4, + ACTIONS(4449), 1, anon_sym_COMMA, - STATE(2309), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4451), 1, + anon_sym_RBRACK, + STATE(2498), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114392] = 4, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3796), 1, - anon_sym_PIPE, - ACTIONS(4470), 1, - anon_sym_COLON, + [114380] = 4, + ACTIONS(639), 1, + sym__newline, + ACTIONS(4453), 1, + anon_sym_SEMI, + STATE(2360), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114406] = 4, - ACTIONS(4108), 1, + [114394] = 4, + ACTIONS(3048), 1, anon_sym_COMMA, - ACTIONS(4472), 1, - anon_sym_in, - STATE(2346), 1, - aux_sym__patterns_repeat1, + ACTIONS(3117), 1, + anon_sym_RPAREN, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114420] = 4, - ACTIONS(4108), 1, + [114408] = 4, + ACTIONS(4455), 1, anon_sym_COMMA, - ACTIONS(4474), 1, - anon_sym_in, - STATE(2346), 1, - aux_sym__patterns_repeat1, + ACTIONS(4457), 1, + anon_sym_RBRACK, + STATE(2498), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, + [114422] = 3, + ACTIONS(4461), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4459), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, [114434] = 4, - ACTIONS(4476), 1, + ACTIONS(4463), 1, anon_sym_SEMI, - ACTIONS(4478), 1, + ACTIONS(4465), 1, sym__newline, - STATE(2334), 1, + STATE(2441), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [114448] = 4, - ACTIONS(3474), 1, - anon_sym_PIPE, - ACTIONS(4480), 1, + ACTIONS(3781), 1, anon_sym_COLON, - STATE(1959), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(4467), 1, + anon_sym_RBRACE, + STATE(2794), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [114462] = 4, - ACTIONS(3431), 1, - anon_sym_COMMA, - ACTIONS(3433), 1, - anon_sym_RBRACE, - STATE(2462), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3366), 1, + sym_identifier, + STATE(2133), 1, + sym_dotted_name, + STATE(2372), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, [114476] = 4, - ACTIONS(3296), 1, + ACTIONS(1303), 1, + anon_sym_RBRACE, + ACTIONS(4469), 1, anon_sym_COMMA, - ACTIONS(3298), 1, - anon_sym_RBRACK, - STATE(2327), 1, - aux_sym_subscript_repeat1, + STATE(2438), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [114490] = 4, - ACTIONS(4329), 1, - sym__newline, - ACTIONS(4331), 1, - sym__indent, - STATE(814), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114504] = 4, - ACTIONS(4482), 1, - anon_sym_COMMA, - ACTIONS(4484), 1, - anon_sym_COLON, - STATE(2392), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114518] = 3, - ACTIONS(4387), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3882), 2, - anon_sym_COMMA, + ACTIONS(3781), 1, anon_sym_COLON, - [114530] = 4, - ACTIONS(4486), 1, - anon_sym_COMMA, - ACTIONS(4488), 1, + ACTIONS(4471), 1, anon_sym_RBRACE, - STATE(2283), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114544] = 4, - ACTIONS(621), 1, - sym__newline, - ACTIONS(4490), 1, - anon_sym_SEMI, - STATE(2400), 1, - aux_sym__simple_statements_repeat1, + STATE(2668), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114558] = 4, - ACTIONS(3258), 1, + [114504] = 4, + ACTIONS(4042), 1, anon_sym_COMMA, - ACTIONS(3260), 1, - anon_sym_RBRACK, - STATE(2241), 1, - aux_sym_subscript_repeat1, + ACTIONS(4473), 1, + anon_sym_in, + STATE(2260), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114572] = 4, - ACTIONS(1343), 1, - anon_sym_RBRACE, - ACTIONS(4492), 1, + [114518] = 4, + ACTIONS(2871), 1, + anon_sym_in, + ACTIONS(4475), 1, anon_sym_COMMA, - STATE(2256), 1, - aux_sym_dictionary_repeat1, + STATE(2459), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114586] = 4, - ACTIONS(4494), 1, + [114532] = 4, + ACTIONS(3048), 1, anon_sym_COMMA, - ACTIONS(4496), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + ACTIONS(3105), 1, + anon_sym_RPAREN, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114600] = 4, - ACTIONS(3684), 1, - anon_sym_COLON, - ACTIONS(4498), 1, - anon_sym_RBRACE, - STATE(2766), 1, - sym_format_specifier, + [114546] = 4, + ACTIONS(4235), 1, + sym__newline, + ACTIONS(4237), 1, + sym__indent, + STATE(760), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114614] = 4, - ACTIONS(3050), 1, + [114560] = 4, + ACTIONS(3083), 1, anon_sym_RPAREN, - ACTIONS(3052), 1, + ACTIONS(3085), 1, anon_sym_COMMA, - STATE(2472), 1, + STATE(2471), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114628] = 4, - ACTIONS(4500), 1, + [114574] = 4, + ACTIONS(4478), 1, anon_sym_RPAREN, - ACTIONS(4502), 1, + ACTIONS(4480), 1, anon_sym_COMMA, STATE(2473), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114642] = 4, - ACTIONS(4504), 1, + [114588] = 4, + ACTIONS(4482), 1, anon_sym_COMMA, - ACTIONS(4506), 1, + ACTIONS(4484), 1, anon_sym_RBRACE, - STATE(2252), 1, + STATE(2435), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114656] = 4, - ACTIONS(4123), 1, - anon_sym_RPAREN, - ACTIONS(4508), 1, + [114602] = 4, + ACTIONS(4486), 1, anon_sym_COMMA, - STATE(2468), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4488), 1, + anon_sym_RBRACE, + STATE(2435), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114670] = 4, - ACTIONS(3234), 1, + [114616] = 4, + ACTIONS(3243), 1, anon_sym_COMMA, - ACTIONS(3238), 1, + ACTIONS(3245), 1, anon_sym_RBRACK, - STATE(2475), 1, + STATE(2476), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114684] = 4, - ACTIONS(4108), 1, + [114630] = 4, + ACTIONS(4490), 1, anon_sym_COMMA, - ACTIONS(4511), 1, - anon_sym_in, - STATE(2346), 1, - aux_sym__patterns_repeat1, + ACTIONS(4492), 1, + anon_sym_RBRACK, + STATE(2498), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114698] = 4, - ACTIONS(4329), 1, - sym__newline, - ACTIONS(4331), 1, - sym__indent, - STATE(811), 1, - sym__match_block, + [114644] = 4, + ACTIONS(2644), 1, + anon_sym_RBRACK, + ACTIONS(4494), 1, + anon_sym_COMMA, + STATE(2289), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114712] = 4, - ACTIONS(1189), 1, + [114658] = 4, + ACTIONS(2672), 1, anon_sym_RPAREN, - ACTIONS(4513), 1, + ACTIONS(4496), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + STATE(2301), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114726] = 4, - ACTIONS(1191), 1, + [114672] = 4, + ACTIONS(3728), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_PIPE, + ACTIONS(4498), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114686] = 4, + ACTIONS(1227), 1, anon_sym_RPAREN, - ACTIONS(4515), 1, + ACTIONS(4500), 1, anon_sym_COMMA, - STATE(2438), 1, + STATE(2496), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114740] = 4, - ACTIONS(4517), 1, + [114700] = 4, + ACTIONS(4502), 1, anon_sym_COMMA, - ACTIONS(4519), 1, + ACTIONS(4504), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2498), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114754] = 4, - ACTIONS(4521), 1, + [114714] = 4, + ACTIONS(1217), 1, + anon_sym_RPAREN, + ACTIONS(4506), 1, anon_sym_COMMA, - ACTIONS(4523), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + STATE(2496), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114768] = 3, - ACTIONS(1690), 1, - anon_sym_except, + [114728] = 4, + ACTIONS(1223), 1, + anon_sym_RPAREN, + ACTIONS(4508), 1, + anon_sym_COMMA, + STATE(2496), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 2, - anon_sym_except_STAR, - anon_sym_finally, - [114780] = 4, - ACTIONS(1293), 1, - anon_sym_RBRACK, - ACTIONS(4525), 1, + [114742] = 4, + ACTIONS(4510), 1, anon_sym_COMMA, - STATE(2333), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(4512), 1, + anon_sym_RBRACK, + STATE(2498), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114794] = 4, - ACTIONS(3204), 1, - anon_sym_COLON, - ACTIONS(4527), 1, + [114756] = 4, + ACTIONS(4514), 1, anon_sym_COMMA, - STATE(2478), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(4516), 1, + anon_sym_RBRACK, + STATE(2498), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114808] = 4, - ACTIONS(1145), 1, + [114770] = 4, + ACTIONS(1161), 1, anon_sym_RPAREN, - ACTIONS(4530), 1, + ACTIONS(4518), 1, anon_sym_COMMA, - STATE(2438), 1, + STATE(2496), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114822] = 4, - ACTIONS(1021), 1, - anon_sym_RBRACK, - ACTIONS(4532), 1, + [114784] = 4, + ACTIONS(4520), 1, anon_sym_COMMA, - STATE(2240), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(4522), 1, + anon_sym_RBRACE, + STATE(2465), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114836] = 4, - ACTIONS(4219), 1, + [114798] = 4, + ACTIONS(3584), 1, + anon_sym_PIPE, + ACTIONS(4524), 1, + anon_sym_COLON, + STATE(1934), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114812] = 4, + ACTIONS(4203), 1, sym__newline, - ACTIONS(4221), 1, + ACTIONS(4205), 1, sym__indent, - STATE(776), 1, + STATE(825), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114850] = 4, - ACTIONS(4484), 1, - anon_sym_RPAREN, - ACTIONS(4534), 1, + [114826] = 4, + ACTIONS(3255), 1, anon_sym_COMMA, - STATE(2368), 1, - aux_sym__parameters_repeat1, + ACTIONS(3257), 1, + anon_sym_RBRACK, + STATE(2467), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114864] = 4, - ACTIONS(4536), 1, - anon_sym_COMMA, - ACTIONS(4538), 1, - anon_sym_COLON, - STATE(2369), 1, - aux_sym_match_statement_repeat1, + [114840] = 3, + ACTIONS(1680), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114878] = 4, - ACTIONS(3790), 1, + ACTIONS(1678), 2, + anon_sym_except_STAR, + anon_sym_finally, + [114852] = 4, + ACTIONS(3728), 1, anon_sym_DOT, - ACTIONS(3796), 1, + ACTIONS(3734), 1, anon_sym_PIPE, - ACTIONS(4540), 1, + ACTIONS(4526), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114892] = 4, - ACTIONS(4108), 1, + [114866] = 4, + ACTIONS(3845), 1, + anon_sym_RBRACK, + ACTIONS(4528), 1, anon_sym_COMMA, - ACTIONS(4542), 1, - anon_sym_in, - STATE(2346), 1, - aux_sym__patterns_repeat1, + STATE(2484), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114906] = 4, - ACTIONS(4091), 1, - anon_sym_RPAREN, - ACTIONS(4544), 1, + [114880] = 4, + ACTIONS(997), 1, + anon_sym_RBRACK, + ACTIONS(4531), 1, anon_sym_COMMA, - STATE(2486), 1, - aux_sym__parameters_repeat1, + STATE(2484), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114920] = 3, - ACTIONS(3886), 1, - anon_sym_EQ, + [114894] = 4, + ACTIONS(3728), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_PIPE, + ACTIONS(4533), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3882), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [114932] = 3, - ACTIONS(1694), 1, - anon_sym_except, + [114908] = 4, + ACTIONS(4203), 1, + sym__newline, + ACTIONS(4205), 1, + sym__indent, + STATE(779), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 2, - anon_sym_except_STAR, - anon_sym_finally, - [114944] = 3, - ACTIONS(4547), 1, + [114922] = 4, + ACTIONS(3728), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3882), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [114956] = 3, - ACTIONS(3572), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3574), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114968] = 3, - ACTIONS(3652), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3654), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114980] = 3, - ACTIONS(3454), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [114936] = 4, + ACTIONS(4537), 1, + anon_sym_SEMI, + ACTIONS(4539), 1, + sym__newline, + STATE(2495), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3456), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114992] = 4, - ACTIONS(3930), 1, - sym_identifier, - STATE(2417), 1, - sym_dotted_name, - STATE(2599), 1, - sym_aliased_import, + [114950] = 4, + ACTIONS(4541), 1, + anon_sym_RPAREN, + ACTIONS(4543), 1, + anon_sym_COMMA, + STATE(2474), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115006] = 4, - ACTIONS(4108), 1, + [114964] = 4, + ACTIONS(3065), 1, + anon_sym_RPAREN, + ACTIONS(3067), 1, anon_sym_COMMA, - ACTIONS(4549), 1, - anon_sym_in, - STATE(2346), 1, - aux_sym__patterns_repeat1, + STATE(2477), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115020] = 4, - ACTIONS(4108), 1, + [114978] = 4, + ACTIONS(3048), 1, anon_sym_COMMA, - ACTIONS(4551), 1, - anon_sym_in, - STATE(2346), 1, - aux_sym__patterns_repeat1, + ACTIONS(4545), 1, + anon_sym_RPAREN, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115034] = 4, - ACTIONS(2644), 1, - anon_sym_RBRACK, - ACTIONS(4553), 1, + [114992] = 4, + ACTIONS(1319), 1, + anon_sym_RBRACE, + ACTIONS(4547), 1, anon_sym_COMMA, - STATE(2446), 1, - aux_sym_case_clause_repeat1, + STATE(2438), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115048] = 4, - ACTIONS(3684), 1, - anon_sym_COLON, - ACTIONS(4555), 1, - anon_sym_RBRACE, - STATE(2759), 1, - sym_format_specifier, + [115006] = 4, + ACTIONS(3048), 1, + anon_sym_COMMA, + ACTIONS(3087), 1, + anon_sym_RPAREN, + STATE(2308), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115062] = 4, - ACTIONS(645), 1, + [115020] = 4, + ACTIONS(635), 1, sym__newline, - ACTIONS(4557), 1, + ACTIONS(4549), 1, anon_sym_SEMI, - STATE(2400), 1, + STATE(2360), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115076] = 3, - ACTIONS(4559), 1, - anon_sym_COLON, - ACTIONS(4561), 1, - anon_sym_DASH_GT, + [115034] = 4, + ACTIONS(3600), 1, + anon_sym_RPAREN, + ACTIONS(4551), 1, + anon_sym_COMMA, + STATE(2496), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115087] = 3, - ACTIONS(4563), 1, + [115048] = 4, + ACTIONS(3401), 1, anon_sym_COMMA, - STATE(1933), 1, - aux_sym__patterns_repeat1, + ACTIONS(3403), 1, + anon_sym_RBRACE, + STATE(2493), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115098] = 3, - ACTIONS(4565), 1, - sym_integer, - ACTIONS(4567), 1, - sym_float, + [115062] = 4, + ACTIONS(4554), 1, + anon_sym_COMMA, + ACTIONS(4557), 1, + anon_sym_RBRACK, + STATE(2498), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115109] = 2, + [115076] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115118] = 2, + ACTIONS(4559), 2, + sym__newline, + anon_sym_SEMI, + [115085] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3345), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115127] = 3, - ACTIONS(4569), 1, - sym_integer, - ACTIONS(4571), 1, - sym_float, + ACTIONS(4561), 2, + sym__newline, + anon_sym_SEMI, + [115094] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115138] = 2, + ACTIONS(4563), 2, + sym__newline, + anon_sym_SEMI, + [115103] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4573), 2, + ACTIONS(3407), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [115147] = 2, + anon_sym_RBRACK, + [115112] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [115156] = 2, + ACTIONS(4565), 2, + sym__newline, + anon_sym_SEMI, + [115121] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3128), 2, + ACTIONS(3095), 2, sym__newline, anon_sym_SEMI, - [115165] = 2, + [115130] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 2, + ACTIONS(4567), 2, sym__newline, anon_sym_SEMI, - [115174] = 2, + [115139] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [115183] = 3, - ACTIONS(4579), 1, - sym_integer, - ACTIONS(4581), 1, - sym_float, + ACTIONS(4569), 2, + sym__newline, + anon_sym_SEMI, + [115148] = 3, + ACTIONS(3880), 1, + anon_sym_LPAREN, + STATE(2541), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115194] = 2, + [115159] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 2, - sym__dedent, - anon_sym_case, - [115203] = 3, - ACTIONS(3888), 1, + ACTIONS(4571), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115168] = 3, + ACTIONS(3880), 1, anon_sym_LPAREN, - STATE(2551), 1, + STATE(2543), 1, sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115214] = 2, + [115179] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4585), 2, - sym__newline, - anon_sym_SEMI, - [115223] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2875), 2, + ACTIONS(3499), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [115232] = 2, + anon_sym_RBRACE, + [115188] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 2, + ACTIONS(3600), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115241] = 2, + [115197] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 2, - sym__dedent, - anon_sym_case, - [115250] = 2, + ACTIONS(4573), 2, + sym__newline, + anon_sym_SEMI, + [115206] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4589), 2, - sym__dedent, - anon_sym_case, - [115259] = 2, + ACTIONS(3320), 2, + sym__newline, + anon_sym_SEMI, + [115215] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 2, - sym__dedent, - anon_sym_case, - [115268] = 2, + ACTIONS(3318), 2, + sym__newline, + anon_sym_SEMI, + [115224] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4593), 2, + ACTIONS(4575), 2, sym__newline, anon_sym_SEMI, - [115277] = 3, - ACTIONS(4595), 1, - anon_sym_COLON, - ACTIONS(4597), 1, - anon_sym_DASH_GT, + [115233] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115288] = 2, + ACTIONS(4577), 2, + anon_sym__, + sym_identifier, + [115242] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 2, - sym__newline, - anon_sym_SEMI, - [115297] = 3, - ACTIONS(4601), 1, + ACTIONS(4579), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115251] = 3, + ACTIONS(4581), 1, sym_integer, - ACTIONS(4603), 1, + ACTIONS(4583), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115308] = 2, + [115262] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 2, - sym__dedent, - anon_sym_case, - [115317] = 2, + ACTIONS(4585), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115271] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 2, - sym__dedent, - anon_sym_case, - [115326] = 2, + ACTIONS(4587), 2, + anon_sym_COMMA, + anon_sym_COLON, + [115280] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 2, + ACTIONS(1678), 2, sym__dedent, anon_sym_case, - [115335] = 2, + [115289] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4609), 2, - sym__dedent, - anon_sym_case, - [115344] = 2, + ACTIONS(2884), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115298] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 2, - sym__newline, - anon_sym_SEMI, - [115353] = 2, + ACTIONS(4589), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [115307] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2875), 2, - anon_sym_RPAREN, + ACTIONS(4000), 2, anon_sym_COMMA, - [115362] = 2, + anon_sym_COLON, + [115316] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4613), 2, + ACTIONS(4000), 2, anon_sym_COMMA, anon_sym_COLON, - [115371] = 2, + [115325] = 3, + ACTIONS(4591), 1, + sym_integer, + ACTIONS(4593), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4615), 2, - sym__newline, - anon_sym_SEMI, - [115380] = 2, + [115336] = 3, + ACTIONS(4595), 1, + anon_sym_COLON, + ACTIONS(4597), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4617), 2, - sym__dedent, - anon_sym_case, - [115389] = 2, + [115347] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 2, + ACTIONS(3156), 2, sym__newline, anon_sym_SEMI, - [115398] = 2, + [115356] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4613), 2, - anon_sym_RPAREN, + ACTIONS(2886), 2, anon_sym_COMMA, - [115407] = 2, + anon_sym_RBRACK, + [115365] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4621), 2, - sym__newline, - anon_sym_SEMI, - [115416] = 2, + ACTIONS(3156), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115374] = 3, + ACTIONS(4599), 1, + sym_integer, + ACTIONS(4601), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4623), 2, - sym__dedent, - anon_sym_case, - [115425] = 3, - ACTIONS(4625), 1, - anon_sym_COLON, - ACTIONS(4627), 1, - anon_sym_DASH_GT, + [115385] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115436] = 2, + ACTIONS(1563), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115394] = 3, + ACTIONS(4603), 1, + anon_sym_COMMA, + STATE(1922), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3882), 2, - anon_sym_RPAREN, + [115405] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4605), 2, + sym__dedent, + anon_sym_case, + [115414] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2871), 2, anon_sym_COMMA, - [115445] = 2, + anon_sym_RBRACK, + [115423] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4629), 2, + ACTIONS(4607), 2, anon_sym__, sym_identifier, - [115454] = 3, - ACTIONS(4631), 1, + [115432] = 3, + ACTIONS(4609), 1, sym_integer, - ACTIONS(4633), 1, + ACTIONS(4611), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115465] = 2, + [115443] = 3, + ACTIONS(4613), 1, + sym_integer, + ACTIONS(4615), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [115474] = 2, + [115454] = 3, + ACTIONS(4617), 1, + sym_integer, + ACTIONS(4619), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4362), 2, - sym__newline, - anon_sym_SEMI, - [115483] = 2, + [115465] = 3, + ACTIONS(4621), 1, + sym_integer, + ACTIONS(4623), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4573), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115492] = 2, + [115476] = 3, + ACTIONS(4625), 1, + anon_sym_COLON, + ACTIONS(4627), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115487] = 3, + ACTIONS(4629), 1, + sym_integer, + ACTIONS(4631), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4637), 2, + [115498] = 3, + ACTIONS(4633), 1, anon_sym_COLON, + ACTIONS(4635), 1, anon_sym_DASH_GT, - [115501] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115509] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1720), 2, + sym__dedent, + anon_sym_case, + [115518] = 3, + ACTIONS(4637), 1, + anon_sym_COLON, ACTIONS(4639), 1, - sym_integer, - ACTIONS(4641), 1, - sym_float, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115512] = 2, + [115529] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 2, + ACTIONS(4219), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115538] = 3, + ACTIONS(4641), 1, anon_sym_COLON, + ACTIONS(4643), 1, anon_sym_DASH_GT, - [115521] = 3, - ACTIONS(4645), 1, - sym_integer, - ACTIONS(4647), 1, - sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115532] = 2, + [115549] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4649), 2, - anon_sym__, - sym_identifier, - [115541] = 2, + ACTIONS(4228), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115558] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2880), 2, + ACTIONS(3499), 2, anon_sym_COMMA, anon_sym_RBRACK, - [115550] = 2, + [115567] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115559] = 3, - ACTIONS(4651), 1, - sym_integer, - ACTIONS(4653), 1, - sym_float, + ACTIONS(4645), 2, + sym__dedent, + anon_sym_case, + [115576] = 3, + ACTIONS(3880), 1, + anon_sym_LPAREN, + STATE(2577), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115570] = 3, - ACTIONS(4655), 1, + [115587] = 3, + ACTIONS(4647), 1, anon_sym_COLON, - ACTIONS(4657), 1, + ACTIONS(4649), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115581] = 2, + [115598] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4236), 2, - anon_sym_RPAREN, + ACTIONS(4579), 2, anon_sym_COMMA, - [115590] = 2, + anon_sym_RBRACK, + [115607] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4659), 2, - sym__newline, - anon_sym_SEMI, - [115599] = 2, + ACTIONS(4585), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115616] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4123), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115608] = 2, + ACTIONS(1724), 2, + sym__dedent, + anon_sym_case, + [115625] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115617] = 2, + ACTIONS(4281), 2, + sym__newline, + anon_sym_SEMI, + [115634] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4573), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115626] = 2, + ACTIONS(4651), 2, + sym__newline, + anon_sym_SEMI, + [115643] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115635] = 2, + ACTIONS(4653), 2, + sym__newline, + anon_sym_SEMI, + [115652] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 2, + ACTIONS(4337), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115644] = 2, + [115661] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115653] = 2, + ACTIONS(1716), 2, + sym__dedent, + anon_sym_case, + [115670] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 2, + ACTIONS(3925), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [115662] = 3, - ACTIONS(4661), 1, - anon_sym_COLON, - ACTIONS(4663), 1, - anon_sym_DASH_GT, + [115679] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115673] = 2, + ACTIONS(2871), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115688] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 2, - sym__dedent, - anon_sym_case, - [115682] = 3, - ACTIONS(4665), 1, - anon_sym_COLON, - ACTIONS(4667), 1, - anon_sym_DASH_GT, + ACTIONS(2884), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115697] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115693] = 3, - ACTIONS(4669), 1, + ACTIONS(4219), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4671), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115704] = 3, - ACTIONS(3888), 1, - anon_sym_LPAREN, - STATE(2520), 1, - sym_parameters, + [115706] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, + ACTIONS(4655), 2, + anon_sym_COMMA, + anon_sym_RBRACE, [115715] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4673), 2, + ACTIONS(4657), 2, anon_sym__, sym_identifier, - [115724] = 3, - ACTIONS(4675), 1, - anon_sym_COLON, - ACTIONS(4677), 1, - anon_sym_DASH_GT, + [115724] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115735] = 3, - ACTIONS(4679), 1, + ACTIONS(3156), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115733] = 3, + ACTIONS(4659), 1, sym_integer, - ACTIONS(4681), 1, + ACTIONS(4661), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115746] = 2, + [115744] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3531), 2, - anon_sym_RPAREN, + ACTIONS(4430), 2, anon_sym_COMMA, - [115755] = 2, + anon_sym_RBRACE, + [115753] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 2, + ACTIONS(4585), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [115764] = 2, + [115762] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4683), 2, + ACTIONS(4663), 2, sym__newline, anon_sym_SEMI, - [115773] = 2, + [115771] = 3, + ACTIONS(4665), 1, + sym_integer, + ACTIONS(4667), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 2, - sym__dedent, - anon_sym_case, [115782] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 2, + ACTIONS(4587), 2, anon_sym_RPAREN, anon_sym_COMMA, [115791] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 2, + ACTIONS(4669), 2, sym__dedent, anon_sym_case, [115800] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4086), 2, + ACTIONS(4000), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, [115809] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4685), 2, + ACTIONS(4671), 2, sym__dedent, anon_sym_case, - [115818] = 2, + [115818] = 3, + ACTIONS(4673), 1, + anon_sym_COLON, + ACTIONS(4675), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3882), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115827] = 2, + [115829] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4687), 2, + ACTIONS(4677), 2, sym__newline, anon_sym_SEMI, - [115836] = 2, + [115838] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4689), 2, + ACTIONS(4679), 2, sym__dedent, anon_sym_case, - [115845] = 2, + [115847] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3882), 2, - anon_sym_COMMA, + ACTIONS(4681), 2, anon_sym_COLON, - [115854] = 2, + anon_sym_DASH_GT, + [115856] = 3, + ACTIONS(4683), 1, + sym_integer, + ACTIONS(4685), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4691), 2, + [115867] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4687), 2, sym__dedent, anon_sym_case, - [115863] = 2, + [115876] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4693), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115872] = 2, + ACTIONS(4689), 2, + sym__dedent, + anon_sym_case, + [115885] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4123), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115881] = 2, + ACTIONS(4691), 2, + sym__dedent, + anon_sym_case, + [115894] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4695), 2, - sym__newline, - anon_sym_SEMI, - [115890] = 2, + ACTIONS(4228), 2, + anon_sym_COMMA, + anon_sym_COLON, + [115903] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3300), 2, - sym__newline, - anon_sym_SEMI, - [115899] = 2, + ACTIONS(4693), 2, + sym__dedent, + anon_sym_case, + [115912] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4697), 2, - sym__newline, - anon_sym_SEMI, - [115908] = 2, + ACTIONS(3499), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115921] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4699), 2, - anon_sym__, - sym_identifier, - [115917] = 3, - ACTIONS(4701), 1, + ACTIONS(4695), 2, + sym__dedent, + anon_sym_case, + [115930] = 3, + ACTIONS(4697), 1, sym_integer, - ACTIONS(4703), 1, + ACTIONS(4699), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115928] = 2, + [115941] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4705), 2, + ACTIONS(1702), 2, sym__dedent, anon_sym_case, - [115937] = 3, - ACTIONS(4707), 1, - sym_integer, - ACTIONS(4709), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115948] = 3, - ACTIONS(3888), 1, + [115950] = 3, + ACTIONS(3880), 1, anon_sym_LPAREN, - STATE(2499), 1, + STATE(2527), 1, sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115959] = 2, + [115961] = 3, + ACTIONS(4701), 1, + anon_sym_COLON, + ACTIONS(4703), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115968] = 2, + [115972] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115977] = 3, - ACTIONS(3888), 1, - anon_sym_LPAREN, - STATE(2567), 1, - sym_parameters, + ACTIONS(4705), 2, + sym__dedent, + anon_sym_case, + [115981] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115988] = 2, + ACTIONS(4707), 2, + sym__dedent, + anon_sym_case, + [115990] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3230), 2, - sym__newline, - anon_sym_SEMI, - [115997] = 2, + ACTIONS(4709), 2, + sym__dedent, + anon_sym_case, + [115999] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 2, - sym__newline, - anon_sym_SEMI, - [116006] = 3, - ACTIONS(4711), 1, - sym_integer, - ACTIONS(4713), 1, - sym_float, + ACTIONS(1563), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [116008] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, + ACTIONS(4711), 2, + anon_sym__, + sym_identifier, [116017] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 2, - sym__dedent, - anon_sym_case, + ACTIONS(4579), 2, + anon_sym_RPAREN, + anon_sym_COMMA, [116026] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3923), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4713), 2, + sym__newline, + anon_sym_SEMI, [116035] = 2, ACTIONS(4715), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116043] = 2, ACTIONS(4717), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -123083,37 +123083,37 @@ static const uint16_t ts_small_parse_table[] = { sym_line_continuation, [116059] = 2, ACTIONS(4721), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116067] = 2, ACTIONS(4723), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116075] = 2, - ACTIONS(3332), 1, - anon_sym_RBRACE, + ACTIONS(4725), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116083] = 2, - ACTIONS(4725), 1, + ACTIONS(4727), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116091] = 2, - ACTIONS(4727), 1, - anon_sym_RBRACE, + ACTIONS(4729), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116099] = 2, - ACTIONS(4729), 1, - anon_sym_RBRACE, + ACTIONS(1431), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -123124,583 +123124,583 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym_line_continuation, [116115] = 2, - ACTIONS(4733), 1, - anon_sym_RPAREN, + ACTIONS(3382), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116123] = 2, - ACTIONS(4735), 1, + ACTIONS(4733), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116131] = 2, - ACTIONS(4737), 1, + ACTIONS(4735), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116139] = 2, - ACTIONS(4739), 1, - anon_sym_RPAREN, + ACTIONS(4366), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116147] = 2, - ACTIONS(4741), 1, - anon_sym_RPAREN, + ACTIONS(4737), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116155] = 2, - ACTIONS(4743), 1, - anon_sym_RBRACK, + ACTIONS(4739), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116163] = 2, - ACTIONS(4745), 1, - anon_sym_RBRACE, + ACTIONS(4741), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116171] = 2, - ACTIONS(4747), 1, - anon_sym_COLON, + ACTIONS(3388), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116179] = 2, - ACTIONS(4749), 1, + ACTIONS(4743), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116187] = 2, - ACTIONS(4751), 1, - anon_sym_RBRACE, + ACTIONS(4745), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116195] = 2, - ACTIONS(4753), 1, - anon_sym_COLON, + ACTIONS(4747), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116203] = 2, - ACTIONS(4755), 1, - anon_sym_RBRACE, + ACTIONS(4749), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116211] = 2, - ACTIONS(3101), 1, + ACTIONS(4751), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116219] = 2, - ACTIONS(4757), 1, - anon_sym_RPAREN, + ACTIONS(4753), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116227] = 2, - ACTIONS(4759), 1, - sym_identifier, + ACTIONS(4755), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116235] = 2, - ACTIONS(4761), 1, - anon_sym_RPAREN, + ACTIONS(4757), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116243] = 2, - ACTIONS(4763), 1, - anon_sym_RBRACK, + ACTIONS(3130), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116251] = 2, - ACTIONS(4765), 1, - anon_sym_RPAREN, + ACTIONS(4759), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116259] = 2, - ACTIONS(4767), 1, - anon_sym_RBRACK, + ACTIONS(3332), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116267] = 2, - ACTIONS(4769), 1, - sym_identifier, + ACTIONS(4761), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116275] = 2, - ACTIONS(4771), 1, - sym_identifier, + ACTIONS(4763), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116283] = 2, - ACTIONS(4773), 1, - anon_sym_RPAREN, + ACTIONS(4765), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116291] = 2, - ACTIONS(4366), 1, - anon_sym_in, + ACTIONS(4767), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116299] = 2, - ACTIONS(3078), 1, + ACTIONS(3101), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116307] = 2, - ACTIONS(3452), 1, - anon_sym_RBRACE, + ACTIONS(4769), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116315] = 2, - ACTIONS(3074), 1, + ACTIONS(4771), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116323] = 2, - ACTIONS(4775), 1, - anon_sym_COLON, + ACTIONS(3036), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116331] = 2, - ACTIONS(4777), 1, - anon_sym_RBRACE, + ACTIONS(4773), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116339] = 2, - ACTIONS(4779), 1, - anon_sym_COLON_EQ, + ACTIONS(4775), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116347] = 2, - ACTIONS(4781), 1, - anon_sym_COLON, + ACTIONS(4777), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116355] = 2, - ACTIONS(4783), 1, - sym_identifier, + ACTIONS(4779), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116363] = 2, - ACTIONS(3336), 1, - anon_sym_COLON, + ACTIONS(4781), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116371] = 2, - ACTIONS(4785), 1, + ACTIONS(4783), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116379] = 2, - ACTIONS(4787), 1, - anon_sym_RBRACE, + ACTIONS(4785), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116387] = 2, - ACTIONS(4789), 1, - sym_identifier, + ACTIONS(3024), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116395] = 2, - ACTIONS(4791), 1, - sym_identifier, + ACTIONS(4787), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116403] = 2, - ACTIONS(4793), 1, - sym_identifier, + ACTIONS(4789), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116411] = 2, - ACTIONS(4795), 1, - anon_sym_RPAREN, + ACTIONS(4791), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116419] = 2, - ACTIONS(4797), 1, - anon_sym_RBRACK, + ACTIONS(4793), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116427] = 2, - ACTIONS(4799), 1, - anon_sym_RBRACK, + ACTIONS(4795), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116435] = 2, - ACTIONS(4801), 1, - sym_identifier, + ACTIONS(4797), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116443] = 2, - ACTIONS(4803), 1, - anon_sym_in, + ACTIONS(4799), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116451] = 2, - ACTIONS(4805), 1, - anon_sym_RPAREN, + ACTIONS(4801), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116459] = 2, - ACTIONS(4807), 1, - anon_sym_RBRACE, + ACTIONS(4803), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116467] = 2, - ACTIONS(4809), 1, + ACTIONS(4805), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116475] = 2, - ACTIONS(4811), 1, - anon_sym_COLON, + ACTIONS(4807), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116483] = 2, - ACTIONS(4813), 1, - sym_identifier, + ACTIONS(4809), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116491] = 2, - ACTIONS(4815), 1, + ACTIONS(4811), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116499] = 2, - ACTIONS(4817), 1, - anon_sym_COLON, + ACTIONS(3425), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116507] = 2, - ACTIONS(3349), 1, - anon_sym_RBRACE, + ACTIONS(4813), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116515] = 2, - ACTIONS(4819), 1, - anon_sym_RPAREN, + ACTIONS(4815), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116523] = 2, - ACTIONS(4821), 1, - anon_sym_RBRACK, + ACTIONS(4817), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116531] = 2, - ACTIONS(4823), 1, - sym_identifier, + ACTIONS(4819), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116539] = 2, - ACTIONS(4825), 1, + ACTIONS(4821), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116547] = 2, - ACTIONS(4827), 1, - anon_sym_RBRACK, + ACTIONS(4823), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116555] = 2, - ACTIONS(3384), 1, + ACTIONS(3431), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116563] = 2, - ACTIONS(3433), 1, - anon_sym_RBRACE, + ACTIONS(4825), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116571] = 2, - ACTIONS(4829), 1, - sym_identifier, + ACTIONS(3403), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116579] = 2, - ACTIONS(4831), 1, + ACTIONS(4827), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116587] = 2, - ACTIONS(4833), 1, - anon_sym_RBRACE, + ACTIONS(4829), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116595] = 2, - ACTIONS(4835), 1, - anon_sym_RBRACE, + ACTIONS(4831), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116603] = 2, - ACTIONS(4837), 1, - anon_sym_COLON, + ACTIONS(3328), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116611] = 2, - ACTIONS(4839), 1, + ACTIONS(4833), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116619] = 2, - ACTIONS(4841), 1, - anon_sym_RBRACE, + ACTIONS(4835), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116627] = 2, - ACTIONS(4843), 1, - anon_sym_for, + ACTIONS(4837), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116635] = 2, - ACTIONS(4845), 1, + ACTIONS(4839), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116643] = 2, - ACTIONS(4847), 1, - sym_identifier, + ACTIONS(4841), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116651] = 2, - ACTIONS(4849), 1, - anon_sym_COLON, + ACTIONS(4246), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116659] = 2, - ACTIONS(4851), 1, - anon_sym_RBRACE, + ACTIONS(4843), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116667] = 2, - ACTIONS(4853), 1, - anon_sym_COLON, + ACTIONS(4845), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116675] = 2, - ACTIONS(4855), 1, - anon_sym_RPAREN, + ACTIONS(4847), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116683] = 2, - ACTIONS(4857), 1, - anon_sym_RBRACK, + ACTIONS(4849), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116691] = 2, - ACTIONS(4859), 1, - anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116699] = 2, - ACTIONS(4861), 1, - anon_sym_COLON_EQ, + ACTIONS(4853), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116707] = 2, - ACTIONS(4863), 1, - anon_sym_COLON, + ACTIONS(4855), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116715] = 2, - ACTIONS(4865), 1, - sym_identifier, + ACTIONS(4857), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116723] = 2, - ACTIONS(4436), 1, - anon_sym_in, + ACTIONS(4859), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116731] = 2, - ACTIONS(4867), 1, - anon_sym_RBRACK, + ACTIONS(4224), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116739] = 2, - ACTIONS(3372), 1, - anon_sym_COLON, + ACTIONS(4861), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116747] = 2, - ACTIONS(3038), 1, - anon_sym_RPAREN, + ACTIONS(3433), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116755] = 2, - ACTIONS(4869), 1, - anon_sym_RBRACE, + ACTIONS(4863), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116763] = 2, - ACTIONS(4871), 1, - anon_sym_COLON, + ACTIONS(4865), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116771] = 2, - ACTIONS(4873), 1, - anon_sym_RPAREN, + ACTIONS(4867), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116779] = 2, - ACTIONS(4875), 1, - anon_sym_COLON, + ACTIONS(4869), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116787] = 2, - ACTIONS(4877), 1, - anon_sym_RBRACE, + ACTIONS(4871), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116795] = 2, - ACTIONS(4440), 1, - anon_sym_in, + ACTIONS(4873), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116803] = 2, - ACTIONS(4879), 1, - anon_sym_COLON, + ACTIONS(4190), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116811] = 2, - ACTIONS(3328), 1, - anon_sym_COLON, + ACTIONS(2996), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116819] = 2, - ACTIONS(3366), 1, - anon_sym_RBRACE, + ACTIONS(3399), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116827] = 2, - ACTIONS(4881), 1, - anon_sym_COLON, + ACTIONS(4875), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116835] = 2, - ACTIONS(4883), 1, - anon_sym_RPAREN, + ACTIONS(4877), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116843] = 2, - ACTIONS(4885), 1, - anon_sym_RPAREN, + ACTIONS(4879), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116851] = 2, - ACTIONS(3376), 1, - anon_sym_RBRACE, + ACTIONS(4881), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116859] = 2, - ACTIONS(4887), 1, - anon_sym_RBRACK, + ACTIONS(4883), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116867] = 2, - ACTIONS(4889), 1, - anon_sym_RBRACK, + ACTIONS(4885), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116875] = 2, - ACTIONS(1451), 1, - anon_sym_COLON, + ACTIONS(4887), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116883] = 2, - ACTIONS(3395), 1, + ACTIONS(4889), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, @@ -123713,31 +123713,31 @@ static const uint16_t ts_small_parse_table[] = { sym_line_continuation, [116899] = 2, ACTIONS(4893), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116907] = 2, ACTIONS(4895), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116915] = 2, - ACTIONS(4897), 1, - anon_sym_RBRACE, + ACTIONS(4473), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116923] = 2, - ACTIONS(4899), 1, - anon_sym_COLON, + ACTIONS(4897), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116931] = 2, - ACTIONS(3386), 1, - anon_sym_COLON, + ACTIONS(4899), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -123749,7 +123749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_continuation, [116947] = 2, ACTIONS(4903), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -123772,464 +123772,464 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym_line_continuation, [116979] = 2, - ACTIONS(4911), 1, - anon_sym_COLON, + ACTIONS(1457), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116987] = 2, - ACTIONS(4913), 1, - sym_identifier, + ACTIONS(4911), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116995] = 2, - ACTIONS(4472), 1, - anon_sym_in, + ACTIONS(4913), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117003] = 2, - ACTIONS(4915), 1, - anon_sym_RPAREN, + ACTIONS(4115), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117011] = 2, - ACTIONS(4474), 1, - anon_sym_in, + ACTIONS(4915), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117019] = 2, - ACTIONS(4917), 1, - anon_sym_RBRACK, + ACTIONS(4111), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117027] = 2, - ACTIONS(4919), 1, - anon_sym_COLON, + ACTIONS(4917), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117035] = 2, - ACTIONS(4921), 1, - anon_sym_RBRACK, + ACTIONS(4919), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117043] = 2, - ACTIONS(4923), 1, + ACTIONS(3083), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117051] = 2, - ACTIONS(4925), 1, - anon_sym_RBRACE, + ACTIONS(4921), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117059] = 2, - ACTIONS(4927), 1, - anon_sym_RBRACE, + ACTIONS(3427), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117067] = 2, - ACTIONS(4110), 1, - anon_sym_in, + ACTIONS(4923), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117075] = 2, - ACTIONS(4929), 1, - sym_identifier, + ACTIONS(4925), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117083] = 2, - ACTIONS(3062), 1, - anon_sym_RPAREN, + ACTIONS(4927), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117091] = 2, - ACTIONS(4931), 1, - anon_sym_import, + ACTIONS(4929), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117099] = 2, - ACTIONS(4933), 1, - anon_sym_RBRACK, + ACTIONS(4931), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117107] = 2, - ACTIONS(4935), 1, + ACTIONS(4933), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117115] = 2, - ACTIONS(4511), 1, - anon_sym_in, + ACTIONS(3050), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117123] = 2, - ACTIONS(4937), 1, - anon_sym_RPAREN, + ACTIONS(4935), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117131] = 2, - ACTIONS(4939), 1, - anon_sym_RBRACK, + ACTIONS(4937), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117139] = 2, - ACTIONS(4941), 1, - anon_sym_import, + ACTIONS(4939), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117147] = 2, - ACTIONS(4943), 1, + ACTIONS(4941), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117155] = 2, - ACTIONS(4945), 1, - anon_sym_import, + ACTIONS(4943), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117163] = 2, - ACTIONS(4947), 1, - anon_sym_RBRACE, + ACTIONS(4945), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117171] = 2, - ACTIONS(4949), 1, + ACTIONS(4947), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117179] = 2, - ACTIONS(4951), 1, - anon_sym_RBRACK, + ACTIONS(4949), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117187] = 2, - ACTIONS(4953), 1, + ACTIONS(4951), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117195] = 2, - ACTIONS(4955), 1, - anon_sym_COLON, + ACTIONS(4953), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117203] = 2, - ACTIONS(4957), 1, - anon_sym_RBRACE, + ACTIONS(4955), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117211] = 2, - ACTIONS(4959), 1, - sym_identifier, + ACTIONS(4957), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117219] = 2, - ACTIONS(4961), 1, + ACTIONS(4959), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117227] = 2, - ACTIONS(3050), 1, - anon_sym_RPAREN, + ACTIONS(4961), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117235] = 2, - ACTIONS(4963), 1, - anon_sym_COLON, + ACTIONS(4067), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117243] = 2, - ACTIONS(4965), 1, - anon_sym_COLON_EQ, + ACTIONS(4963), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117251] = 2, - ACTIONS(1467), 1, - anon_sym_def, + ACTIONS(4965), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117259] = 2, ACTIONS(4967), 1, - ts_builtin_sym_end, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117267] = 2, - ACTIONS(4969), 1, - anon_sym_RBRACK, + ACTIONS(3065), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117275] = 2, - ACTIONS(4971), 1, - sym_identifier, + ACTIONS(4969), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117283] = 2, - ACTIONS(4973), 1, - sym_identifier, + ACTIONS(4971), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117291] = 2, - ACTIONS(4975), 1, - anon_sym_RBRACE, + ACTIONS(4973), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117299] = 2, - ACTIONS(4977), 1, - anon_sym_COLON, + ACTIONS(4975), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117307] = 2, - ACTIONS(4979), 1, - anon_sym_RBRACE, + ACTIONS(4977), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117315] = 2, - ACTIONS(4981), 1, + ACTIONS(4979), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117323] = 2, - ACTIONS(4983), 1, + ACTIONS(4981), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117331] = 2, - ACTIONS(4985), 1, - anon_sym_RBRACE, + ACTIONS(4983), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117339] = 2, - ACTIONS(4987), 1, - anon_sym_RPAREN, + ACTIONS(4985), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117347] = 2, - ACTIONS(4989), 1, - sym_identifier, + ACTIONS(4987), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117355] = 2, - ACTIONS(4991), 1, + ACTIONS(4989), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117363] = 2, - ACTIONS(4993), 1, - anon_sym_RBRACE, + ACTIONS(4991), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117371] = 2, - ACTIONS(4995), 1, - anon_sym_COLON, + ACTIONS(4993), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117379] = 2, - ACTIONS(4997), 1, - anon_sym_RBRACE, + ACTIONS(4995), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117387] = 2, - ACTIONS(4999), 1, - sym_identifier, + ACTIONS(4997), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117395] = 2, - ACTIONS(5001), 1, - anon_sym_COLON, + ACTIONS(4999), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117403] = 2, - ACTIONS(5003), 1, - anon_sym_COLON_EQ, + ACTIONS(5001), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117411] = 2, - ACTIONS(5005), 1, - sym_identifier, + ACTIONS(3452), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117419] = 2, - ACTIONS(5007), 1, - anon_sym_COLON_EQ, + ACTIONS(5003), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117427] = 2, - ACTIONS(4542), 1, - anon_sym_in, + ACTIONS(5005), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117435] = 2, - ACTIONS(5009), 1, + ACTIONS(5007), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117443] = 2, - ACTIONS(5011), 1, - anon_sym_COLON, + ACTIONS(3336), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117451] = 2, - ACTIONS(5013), 1, - anon_sym_COLON_EQ, + ACTIONS(5009), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117459] = 2, - ACTIONS(5015), 1, + ACTIONS(5011), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117467] = 2, - ACTIONS(5017), 1, - anon_sym_COLON, + ACTIONS(5013), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117475] = 2, - ACTIONS(5019), 1, + ACTIONS(5015), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117483] = 2, - ACTIONS(5021), 1, + ACTIONS(5017), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117491] = 2, - ACTIONS(5023), 1, - anon_sym_RPAREN, + ACTIONS(5019), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117499] = 2, - ACTIONS(5025), 1, - sym_identifier, + ACTIONS(5021), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117507] = 2, - ACTIONS(5027), 1, + ACTIONS(5023), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117515] = 2, - ACTIONS(5029), 1, - anon_sym_COLON, + ACTIONS(5025), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117523] = 2, - ACTIONS(4549), 1, - anon_sym_in, + ACTIONS(5027), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117531] = 2, - ACTIONS(1461), 1, - anon_sym_def, + ACTIONS(4046), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117539] = 2, - ACTIONS(5031), 1, - anon_sym_for, + ACTIONS(1465), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117547] = 2, - ACTIONS(5033), 1, - sym_identifier, + ACTIONS(5029), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117555] = 2, - ACTIONS(4551), 1, - anon_sym_in, + ACTIONS(5031), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117563] = 2, - ACTIONS(5035), 1, - anon_sym_for, + ACTIONS(4044), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117571] = 2, - ACTIONS(5037), 1, - anon_sym_RBRACK, + ACTIONS(5033), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117579] = 2, - ACTIONS(3120), 1, - anon_sym_RPAREN, + ACTIONS(5035), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117587] = 2, - ACTIONS(3091), 1, - anon_sym_RPAREN, + ACTIONS(5037), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -124237,38 +124237,38 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(189)] = 0, - [SMALL_STATE(190)] = 126, - [SMALL_STATE(191)] = 250, - [SMALL_STATE(192)] = 376, - [SMALL_STATE(193)] = 500, - [SMALL_STATE(194)] = 624, - [SMALL_STATE(195)] = 744, - [SMALL_STATE(196)] = 870, - [SMALL_STATE(197)] = 994, - [SMALL_STATE(198)] = 1118, - [SMALL_STATE(199)] = 1238, - [SMALL_STATE(200)] = 1358, - [SMALL_STATE(201)] = 1484, - [SMALL_STATE(202)] = 1610, - [SMALL_STATE(203)] = 1734, - [SMALL_STATE(204)] = 1860, - [SMALL_STATE(205)] = 1984, + [SMALL_STATE(190)] = 124, + [SMALL_STATE(191)] = 248, + [SMALL_STATE(192)] = 372, + [SMALL_STATE(193)] = 496, + [SMALL_STATE(194)] = 622, + [SMALL_STATE(195)] = 748, + [SMALL_STATE(196)] = 872, + [SMALL_STATE(197)] = 996, + [SMALL_STATE(198)] = 1120, + [SMALL_STATE(199)] = 1248, + [SMALL_STATE(200)] = 1372, + [SMALL_STATE(201)] = 1492, + [SMALL_STATE(202)] = 1612, + [SMALL_STATE(203)] = 1738, + [SMALL_STATE(204)] = 1862, + [SMALL_STATE(205)] = 1986, [SMALL_STATE(206)] = 2110, [SMALL_STATE(207)] = 2234, - [SMALL_STATE(208)] = 2358, - [SMALL_STATE(209)] = 2482, - [SMALL_STATE(210)] = 2610, - [SMALL_STATE(211)] = 2738, - [SMALL_STATE(212)] = 2864, - [SMALL_STATE(213)] = 2988, - [SMALL_STATE(214)] = 3112, + [SMALL_STATE(208)] = 2360, + [SMALL_STATE(209)] = 2484, + [SMALL_STATE(210)] = 2608, + [SMALL_STATE(211)] = 2734, + [SMALL_STATE(212)] = 2858, + [SMALL_STATE(213)] = 2986, + [SMALL_STATE(214)] = 3110, [SMALL_STATE(215)] = 3236, [SMALL_STATE(216)] = 3360, [SMALL_STATE(217)] = 3484, [SMALL_STATE(218)] = 3610, [SMALL_STATE(219)] = 3734, - [SMALL_STATE(220)] = 3858, - [SMALL_STATE(221)] = 3982, + [SMALL_STATE(220)] = 3860, + [SMALL_STATE(221)] = 3986, [SMALL_STATE(222)] = 4106, [SMALL_STATE(223)] = 4213, [SMALL_STATE(224)] = 4320, @@ -124276,122 +124276,122 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(226)] = 4548, [SMALL_STATE(227)] = 4662, [SMALL_STATE(228)] = 4776, - [SMALL_STATE(229)] = 4890, - [SMALL_STATE(230)] = 5004, + [SMALL_STATE(229)] = 4892, + [SMALL_STATE(230)] = 5006, [SMALL_STATE(231)] = 5120, [SMALL_STATE(232)] = 5234, [SMALL_STATE(233)] = 5348, [SMALL_STATE(234)] = 5464, - [SMALL_STATE(235)] = 5579, + [SMALL_STATE(235)] = 5575, [SMALL_STATE(236)] = 5690, [SMALL_STATE(237)] = 5801, [SMALL_STATE(238)] = 5912, - [SMALL_STATE(239)] = 6029, - [SMALL_STATE(240)] = 6140, - [SMALL_STATE(241)] = 6251, - [SMALL_STATE(242)] = 6362, - [SMALL_STATE(243)] = 6473, - [SMALL_STATE(244)] = 6584, - [SMALL_STATE(245)] = 6695, - [SMALL_STATE(246)] = 6806, - [SMALL_STATE(247)] = 6917, - [SMALL_STATE(248)] = 7028, - [SMALL_STATE(249)] = 7143, + [SMALL_STATE(239)] = 6023, + [SMALL_STATE(240)] = 6134, + [SMALL_STATE(241)] = 6245, + [SMALL_STATE(242)] = 6356, + [SMALL_STATE(243)] = 6467, + [SMALL_STATE(244)] = 6582, + [SMALL_STATE(245)] = 6697, + [SMALL_STATE(246)] = 6812, + [SMALL_STATE(247)] = 6923, + [SMALL_STATE(248)] = 7034, + [SMALL_STATE(249)] = 7139, [SMALL_STATE(250)] = 7254, [SMALL_STATE(251)] = 7365, - [SMALL_STATE(252)] = 7480, + [SMALL_STATE(252)] = 7476, [SMALL_STATE(253)] = 7591, - [SMALL_STATE(254)] = 7696, - [SMALL_STATE(255)] = 7801, - [SMALL_STATE(256)] = 7912, - [SMALL_STATE(257)] = 8027, - [SMALL_STATE(258)] = 8138, - [SMALL_STATE(259)] = 8249, - [SMALL_STATE(260)] = 8360, - [SMALL_STATE(261)] = 8475, - [SMALL_STATE(262)] = 8590, - [SMALL_STATE(263)] = 8705, + [SMALL_STATE(254)] = 7702, + [SMALL_STATE(255)] = 7817, + [SMALL_STATE(256)] = 7928, + [SMALL_STATE(257)] = 8039, + [SMALL_STATE(258)] = 8150, + [SMALL_STATE(259)] = 8265, + [SMALL_STATE(260)] = 8376, + [SMALL_STATE(261)] = 8487, + [SMALL_STATE(262)] = 8598, + [SMALL_STATE(263)] = 8709, [SMALL_STATE(264)] = 8820, [SMALL_STATE(265)] = 8931, - [SMALL_STATE(266)] = 9042, - [SMALL_STATE(267)] = 9153, - [SMALL_STATE(268)] = 9268, - [SMALL_STATE(269)] = 9379, - [SMALL_STATE(270)] = 9490, + [SMALL_STATE(266)] = 9036, + [SMALL_STATE(267)] = 9147, + [SMALL_STATE(268)] = 9258, + [SMALL_STATE(269)] = 9369, + [SMALL_STATE(270)] = 9486, [SMALL_STATE(271)] = 9601, [SMALL_STATE(272)] = 9712, - [SMALL_STATE(273)] = 9824, - [SMALL_STATE(274)] = 9936, + [SMALL_STATE(273)] = 9826, + [SMALL_STATE(274)] = 9938, [SMALL_STATE(275)] = 10052, - [SMALL_STATE(276)] = 10166, - [SMALL_STATE(277)] = 10278, - [SMALL_STATE(278)] = 10390, - [SMALL_STATE(279)] = 10502, + [SMALL_STATE(276)] = 10164, + [SMALL_STATE(277)] = 10276, + [SMALL_STATE(278)] = 10388, + [SMALL_STATE(279)] = 10500, [SMALL_STATE(280)] = 10616, [SMALL_STATE(281)] = 10728, - [SMALL_STATE(282)] = 10844, - [SMALL_STATE(283)] = 10956, - [SMALL_STATE(284)] = 11068, - [SMALL_STATE(285)] = 11180, + [SMALL_STATE(282)] = 10840, + [SMALL_STATE(283)] = 10952, + [SMALL_STATE(284)] = 11064, + [SMALL_STATE(285)] = 11176, [SMALL_STATE(286)] = 11292, [SMALL_STATE(287)] = 11404, - [SMALL_STATE(288)] = 11518, + [SMALL_STATE(288)] = 11516, [SMALL_STATE(289)] = 11630, - [SMALL_STATE(290)] = 11746, - [SMALL_STATE(291)] = 11858, - [SMALL_STATE(292)] = 11970, - [SMALL_STATE(293)] = 12082, - [SMALL_STATE(294)] = 12194, - [SMALL_STATE(295)] = 12306, - [SMALL_STATE(296)] = 12420, - [SMALL_STATE(297)] = 12532, - [SMALL_STATE(298)] = 12644, - [SMALL_STATE(299)] = 12756, - [SMALL_STATE(300)] = 12868, - [SMALL_STATE(301)] = 12980, - [SMALL_STATE(302)] = 13094, - [SMALL_STATE(303)] = 13206, - [SMALL_STATE(304)] = 13322, - [SMALL_STATE(305)] = 13434, - [SMALL_STATE(306)] = 13546, - [SMALL_STATE(307)] = 13658, - [SMALL_STATE(308)] = 13770, - [SMALL_STATE(309)] = 13882, - [SMALL_STATE(310)] = 13996, - [SMALL_STATE(311)] = 14108, - [SMALL_STATE(312)] = 14220, - [SMALL_STATE(313)] = 14332, - [SMALL_STATE(314)] = 14444, - [SMALL_STATE(315)] = 14556, - [SMALL_STATE(316)] = 14670, - [SMALL_STATE(317)] = 14782, - [SMALL_STATE(318)] = 14894, - [SMALL_STATE(319)] = 15006, - [SMALL_STATE(320)] = 15118, - [SMALL_STATE(321)] = 15230, - [SMALL_STATE(322)] = 15344, - [SMALL_STATE(323)] = 15456, - [SMALL_STATE(324)] = 15572, - [SMALL_STATE(325)] = 15684, + [SMALL_STATE(290)] = 11742, + [SMALL_STATE(291)] = 11856, + [SMALL_STATE(292)] = 11968, + [SMALL_STATE(293)] = 12084, + [SMALL_STATE(294)] = 12196, + [SMALL_STATE(295)] = 12312, + [SMALL_STATE(296)] = 12424, + [SMALL_STATE(297)] = 12536, + [SMALL_STATE(298)] = 12648, + [SMALL_STATE(299)] = 12762, + [SMALL_STATE(300)] = 12876, + [SMALL_STATE(301)] = 12988, + [SMALL_STATE(302)] = 13100, + [SMALL_STATE(303)] = 13212, + [SMALL_STATE(304)] = 13324, + [SMALL_STATE(305)] = 13436, + [SMALL_STATE(306)] = 13548, + [SMALL_STATE(307)] = 13660, + [SMALL_STATE(308)] = 13772, + [SMALL_STATE(309)] = 13884, + [SMALL_STATE(310)] = 13998, + [SMALL_STATE(311)] = 14110, + [SMALL_STATE(312)] = 14222, + [SMALL_STATE(313)] = 14334, + [SMALL_STATE(314)] = 14446, + [SMALL_STATE(315)] = 14562, + [SMALL_STATE(316)] = 14674, + [SMALL_STATE(317)] = 14786, + [SMALL_STATE(318)] = 14898, + [SMALL_STATE(319)] = 15010, + [SMALL_STATE(320)] = 15122, + [SMALL_STATE(321)] = 15238, + [SMALL_STATE(322)] = 15350, + [SMALL_STATE(323)] = 15462, + [SMALL_STATE(324)] = 15574, + [SMALL_STATE(325)] = 15688, [SMALL_STATE(326)] = 15800, [SMALL_STATE(327)] = 15909, [SMALL_STATE(328)] = 16018, [SMALL_STATE(329)] = 16123, [SMALL_STATE(330)] = 16232, - [SMALL_STATE(331)] = 16341, - [SMALL_STATE(332)] = 16450, - [SMALL_STATE(333)] = 16559, - [SMALL_STATE(334)] = 16668, - [SMALL_STATE(335)] = 16777, - [SMALL_STATE(336)] = 16886, - [SMALL_STATE(337)] = 16995, - [SMALL_STATE(338)] = 17104, - [SMALL_STATE(339)] = 17213, - [SMALL_STATE(340)] = 17322, - [SMALL_STATE(341)] = 17431, - [SMALL_STATE(342)] = 17540, - [SMALL_STATE(343)] = 17645, - [SMALL_STATE(344)] = 17754, + [SMALL_STATE(331)] = 16329, + [SMALL_STATE(332)] = 16438, + [SMALL_STATE(333)] = 16547, + [SMALL_STATE(334)] = 16656, + [SMALL_STATE(335)] = 16765, + [SMALL_STATE(336)] = 16874, + [SMALL_STATE(337)] = 16983, + [SMALL_STATE(338)] = 17092, + [SMALL_STATE(339)] = 17201, + [SMALL_STATE(340)] = 17310, + [SMALL_STATE(341)] = 17419, + [SMALL_STATE(342)] = 17528, + [SMALL_STATE(343)] = 17637, + [SMALL_STATE(344)] = 17746, [SMALL_STATE(345)] = 17851, [SMALL_STATE(346)] = 17960, [SMALL_STATE(347)] = 18069, @@ -124412,46 +124412,46 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(362)] = 19686, [SMALL_STATE(363)] = 19794, [SMALL_STATE(364)] = 19902, - [SMALL_STATE(365)] = 20010, - [SMALL_STATE(366)] = 20118, - [SMALL_STATE(367)] = 20226, - [SMALL_STATE(368)] = 20334, - [SMALL_STATE(369)] = 20442, + [SMALL_STATE(365)] = 20008, + [SMALL_STATE(366)] = 20116, + [SMALL_STATE(367)] = 20224, + [SMALL_STATE(368)] = 20332, + [SMALL_STATE(369)] = 20440, [SMALL_STATE(370)] = 20548, [SMALL_STATE(371)] = 20656, [SMALL_STATE(372)] = 20763, - [SMALL_STATE(373)] = 20868, - [SMALL_STATE(374)] = 20975, - [SMALL_STATE(375)] = 21082, - [SMALL_STATE(376)] = 21189, - [SMALL_STATE(377)] = 21296, - [SMALL_STATE(378)] = 21403, + [SMALL_STATE(373)] = 20870, + [SMALL_STATE(374)] = 20977, + [SMALL_STATE(375)] = 21084, + [SMALL_STATE(376)] = 21191, + [SMALL_STATE(377)] = 21298, + [SMALL_STATE(378)] = 21405, [SMALL_STATE(379)] = 21510, [SMALL_STATE(380)] = 21617, - [SMALL_STATE(381)] = 21722, - [SMALL_STATE(382)] = 21827, + [SMALL_STATE(381)] = 21724, + [SMALL_STATE(382)] = 21829, [SMALL_STATE(383)] = 21934, [SMALL_STATE(384)] = 22039, [SMALL_STATE(385)] = 22146, - [SMALL_STATE(386)] = 22253, - [SMALL_STATE(387)] = 22360, - [SMALL_STATE(388)] = 22467, - [SMALL_STATE(389)] = 22574, + [SMALL_STATE(386)] = 22241, + [SMALL_STATE(387)] = 22348, + [SMALL_STATE(388)] = 22455, + [SMALL_STATE(389)] = 22562, [SMALL_STATE(390)] = 22669, [SMALL_STATE(391)] = 22776, [SMALL_STATE(392)] = 22883, - [SMALL_STATE(393)] = 22990, - [SMALL_STATE(394)] = 23097, - [SMALL_STATE(395)] = 23204, - [SMALL_STATE(396)] = 23311, - [SMALL_STATE(397)] = 23418, - [SMALL_STATE(398)] = 23525, - [SMALL_STATE(399)] = 23632, - [SMALL_STATE(400)] = 23739, - [SMALL_STATE(401)] = 23846, - [SMALL_STATE(402)] = 23951, - [SMALL_STATE(403)] = 24058, - [SMALL_STATE(404)] = 24163, + [SMALL_STATE(393)] = 22988, + [SMALL_STATE(394)] = 23095, + [SMALL_STATE(395)] = 23202, + [SMALL_STATE(396)] = 23309, + [SMALL_STATE(397)] = 23416, + [SMALL_STATE(398)] = 23523, + [SMALL_STATE(399)] = 23628, + [SMALL_STATE(400)] = 23735, + [SMALL_STATE(401)] = 23842, + [SMALL_STATE(402)] = 23937, + [SMALL_STATE(403)] = 24044, + [SMALL_STATE(404)] = 24151, [SMALL_STATE(405)] = 24258, [SMALL_STATE(406)] = 24365, [SMALL_STATE(407)] = 24472, @@ -124459,71 +124459,71 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(409)] = 24686, [SMALL_STATE(410)] = 24790, [SMALL_STATE(411)] = 24894, - [SMALL_STATE(412)] = 24996, - [SMALL_STATE(413)] = 25098, - [SMALL_STATE(414)] = 25200, - [SMALL_STATE(415)] = 25302, - [SMALL_STATE(416)] = 25404, - [SMALL_STATE(417)] = 25508, - [SMALL_STATE(418)] = 25602, - [SMALL_STATE(419)] = 25704, - [SMALL_STATE(420)] = 25806, - [SMALL_STATE(421)] = 25908, - [SMALL_STATE(422)] = 26010, - [SMALL_STATE(423)] = 26104, - [SMALL_STATE(424)] = 26200, - [SMALL_STATE(425)] = 26302, - [SMALL_STATE(426)] = 26404, - [SMALL_STATE(427)] = 26506, - [SMALL_STATE(428)] = 26608, - [SMALL_STATE(429)] = 26712, - [SMALL_STATE(430)] = 26816, - [SMALL_STATE(431)] = 26918, + [SMALL_STATE(412)] = 24998, + [SMALL_STATE(413)] = 25100, + [SMALL_STATE(414)] = 25204, + [SMALL_STATE(415)] = 25308, + [SMALL_STATE(416)] = 25410, + [SMALL_STATE(417)] = 25514, + [SMALL_STATE(418)] = 25618, + [SMALL_STATE(419)] = 25720, + [SMALL_STATE(420)] = 25824, + [SMALL_STATE(421)] = 25926, + [SMALL_STATE(422)] = 26030, + [SMALL_STATE(423)] = 26132, + [SMALL_STATE(424)] = 26234, + [SMALL_STATE(425)] = 26336, + [SMALL_STATE(426)] = 26430, + [SMALL_STATE(427)] = 26534, + [SMALL_STATE(428)] = 26636, + [SMALL_STATE(429)] = 26730, + [SMALL_STATE(430)] = 26824, + [SMALL_STATE(431)] = 26926, [SMALL_STATE(432)] = 27022, [SMALL_STATE(433)] = 27124, [SMALL_STATE(434)] = 27226, - [SMALL_STATE(435)] = 27328, - [SMALL_STATE(436)] = 27430, - [SMALL_STATE(437)] = 27532, - [SMALL_STATE(438)] = 27634, - [SMALL_STATE(439)] = 27736, - [SMALL_STATE(440)] = 27830, - [SMALL_STATE(441)] = 27934, - [SMALL_STATE(442)] = 28036, - [SMALL_STATE(443)] = 28138, - [SMALL_STATE(444)] = 28242, - [SMALL_STATE(445)] = 28346, - [SMALL_STATE(446)] = 28450, - [SMALL_STATE(447)] = 28544, - [SMALL_STATE(448)] = 28648, - [SMALL_STATE(449)] = 28752, - [SMALL_STATE(450)] = 28856, - [SMALL_STATE(451)] = 28960, - [SMALL_STATE(452)] = 29064, - [SMALL_STATE(453)] = 29166, - [SMALL_STATE(454)] = 29268, - [SMALL_STATE(455)] = 29372, - [SMALL_STATE(456)] = 29476, - [SMALL_STATE(457)] = 29578, - [SMALL_STATE(458)] = 29680, - [SMALL_STATE(459)] = 29782, - [SMALL_STATE(460)] = 29886, + [SMALL_STATE(435)] = 27330, + [SMALL_STATE(436)] = 27432, + [SMALL_STATE(437)] = 27536, + [SMALL_STATE(438)] = 27638, + [SMALL_STATE(439)] = 27740, + [SMALL_STATE(440)] = 27844, + [SMALL_STATE(441)] = 27946, + [SMALL_STATE(442)] = 28050, + [SMALL_STATE(443)] = 28152, + [SMALL_STATE(444)] = 28254, + [SMALL_STATE(445)] = 28356, + [SMALL_STATE(446)] = 28458, + [SMALL_STATE(447)] = 28560, + [SMALL_STATE(448)] = 28662, + [SMALL_STATE(449)] = 28766, + [SMALL_STATE(450)] = 28868, + [SMALL_STATE(451)] = 28972, + [SMALL_STATE(452)] = 29074, + [SMALL_STATE(453)] = 29178, + [SMALL_STATE(454)] = 29280, + [SMALL_STATE(455)] = 29382, + [SMALL_STATE(456)] = 29486, + [SMALL_STATE(457)] = 29590, + [SMALL_STATE(458)] = 29692, + [SMALL_STATE(459)] = 29794, + [SMALL_STATE(460)] = 29896, [SMALL_STATE(461)] = 29990, [SMALL_STATE(462)] = 30065, [SMALL_STATE(463)] = 30166, - [SMALL_STATE(464)] = 30241, + [SMALL_STATE(464)] = 30267, [SMALL_STATE(465)] = 30342, [SMALL_STATE(466)] = 30443, [SMALL_STATE(467)] = 30544, - [SMALL_STATE(468)] = 30619, - [SMALL_STATE(469)] = 30720, - [SMALL_STATE(470)] = 30821, - [SMALL_STATE(471)] = 30922, - [SMALL_STATE(472)] = 31023, - [SMALL_STATE(473)] = 31124, - [SMALL_STATE(474)] = 31225, - [SMALL_STATE(475)] = 31326, - [SMALL_STATE(476)] = 31427, + [SMALL_STATE(468)] = 30621, + [SMALL_STATE(469)] = 30722, + [SMALL_STATE(470)] = 30823, + [SMALL_STATE(471)] = 30924, + [SMALL_STATE(472)] = 31025, + [SMALL_STATE(473)] = 31100, + [SMALL_STATE(474)] = 31201, + [SMALL_STATE(475)] = 31302, + [SMALL_STATE(476)] = 31403, [SMALL_STATE(477)] = 31504, [SMALL_STATE(478)] = 31605, [SMALL_STATE(479)] = 31706, @@ -124533,116 +124533,116 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(483)] = 32101, [SMALL_STATE(484)] = 32199, [SMALL_STATE(485)] = 32297, - [SMALL_STATE(486)] = 32369, - [SMALL_STATE(487)] = 32441, - [SMALL_STATE(488)] = 32539, - [SMALL_STATE(489)] = 32637, - [SMALL_STATE(490)] = 32735, - [SMALL_STATE(491)] = 32833, - [SMALL_STATE(492)] = 32931, - [SMALL_STATE(493)] = 33029, - [SMALL_STATE(494)] = 33127, - [SMALL_STATE(495)] = 33225, - [SMALL_STATE(496)] = 33323, - [SMALL_STATE(497)] = 33421, - [SMALL_STATE(498)] = 33519, - [SMALL_STATE(499)] = 33617, - [SMALL_STATE(500)] = 33715, - [SMALL_STATE(501)] = 33813, - [SMALL_STATE(502)] = 33911, - [SMALL_STATE(503)] = 34009, - [SMALL_STATE(504)] = 34107, - [SMALL_STATE(505)] = 34205, - [SMALL_STATE(506)] = 34303, - [SMALL_STATE(507)] = 34401, - [SMALL_STATE(508)] = 34499, - [SMALL_STATE(509)] = 34597, - [SMALL_STATE(510)] = 34695, - [SMALL_STATE(511)] = 34793, - [SMALL_STATE(512)] = 34891, - [SMALL_STATE(513)] = 34989, - [SMALL_STATE(514)] = 35087, - [SMALL_STATE(515)] = 35185, - [SMALL_STATE(516)] = 35283, - [SMALL_STATE(517)] = 35381, - [SMALL_STATE(518)] = 35479, - [SMALL_STATE(519)] = 35577, - [SMALL_STATE(520)] = 35675, - [SMALL_STATE(521)] = 35773, - [SMALL_STATE(522)] = 35871, - [SMALL_STATE(523)] = 35969, - [SMALL_STATE(524)] = 36067, - [SMALL_STATE(525)] = 36165, - [SMALL_STATE(526)] = 36263, - [SMALL_STATE(527)] = 36363, - [SMALL_STATE(528)] = 36461, - [SMALL_STATE(529)] = 36559, - [SMALL_STATE(530)] = 36657, - [SMALL_STATE(531)] = 36755, - [SMALL_STATE(532)] = 36853, - [SMALL_STATE(533)] = 36951, - [SMALL_STATE(534)] = 37049, - [SMALL_STATE(535)] = 37147, - [SMALL_STATE(536)] = 37245, - [SMALL_STATE(537)] = 37343, - [SMALL_STATE(538)] = 37441, - [SMALL_STATE(539)] = 37539, - [SMALL_STATE(540)] = 37637, - [SMALL_STATE(541)] = 37735, - [SMALL_STATE(542)] = 37833, - [SMALL_STATE(543)] = 37931, - [SMALL_STATE(544)] = 38029, - [SMALL_STATE(545)] = 38127, - [SMALL_STATE(546)] = 38225, - [SMALL_STATE(547)] = 38323, - [SMALL_STATE(548)] = 38421, - [SMALL_STATE(549)] = 38519, - [SMALL_STATE(550)] = 38617, - [SMALL_STATE(551)] = 38715, - [SMALL_STATE(552)] = 38815, - [SMALL_STATE(553)] = 38913, - [SMALL_STATE(554)] = 39011, - [SMALL_STATE(555)] = 39109, - [SMALL_STATE(556)] = 39207, - [SMALL_STATE(557)] = 39305, - [SMALL_STATE(558)] = 39403, - [SMALL_STATE(559)] = 39501, - [SMALL_STATE(560)] = 39599, - [SMALL_STATE(561)] = 39697, - [SMALL_STATE(562)] = 39797, - [SMALL_STATE(563)] = 39869, - [SMALL_STATE(564)] = 39941, - [SMALL_STATE(565)] = 40039, - [SMALL_STATE(566)] = 40137, - [SMALL_STATE(567)] = 40235, - [SMALL_STATE(568)] = 40333, - [SMALL_STATE(569)] = 40431, - [SMALL_STATE(570)] = 40529, - [SMALL_STATE(571)] = 40627, - [SMALL_STATE(572)] = 40725, - [SMALL_STATE(573)] = 40825, - [SMALL_STATE(574)] = 40923, + [SMALL_STATE(486)] = 32395, + [SMALL_STATE(487)] = 32493, + [SMALL_STATE(488)] = 32591, + [SMALL_STATE(489)] = 32689, + [SMALL_STATE(490)] = 32787, + [SMALL_STATE(491)] = 32885, + [SMALL_STATE(492)] = 32983, + [SMALL_STATE(493)] = 33081, + [SMALL_STATE(494)] = 33179, + [SMALL_STATE(495)] = 33277, + [SMALL_STATE(496)] = 33375, + [SMALL_STATE(497)] = 33473, + [SMALL_STATE(498)] = 33571, + [SMALL_STATE(499)] = 33669, + [SMALL_STATE(500)] = 33767, + [SMALL_STATE(501)] = 33865, + [SMALL_STATE(502)] = 33963, + [SMALL_STATE(503)] = 34061, + [SMALL_STATE(504)] = 34159, + [SMALL_STATE(505)] = 34257, + [SMALL_STATE(506)] = 34355, + [SMALL_STATE(507)] = 34453, + [SMALL_STATE(508)] = 34551, + [SMALL_STATE(509)] = 34649, + [SMALL_STATE(510)] = 34747, + [SMALL_STATE(511)] = 34845, + [SMALL_STATE(512)] = 34943, + [SMALL_STATE(513)] = 35041, + [SMALL_STATE(514)] = 35139, + [SMALL_STATE(515)] = 35237, + [SMALL_STATE(516)] = 35335, + [SMALL_STATE(517)] = 35433, + [SMALL_STATE(518)] = 35531, + [SMALL_STATE(519)] = 35629, + [SMALL_STATE(520)] = 35727, + [SMALL_STATE(521)] = 35825, + [SMALL_STATE(522)] = 35923, + [SMALL_STATE(523)] = 36021, + [SMALL_STATE(524)] = 36119, + [SMALL_STATE(525)] = 36217, + [SMALL_STATE(526)] = 36289, + [SMALL_STATE(527)] = 36361, + [SMALL_STATE(528)] = 36459, + [SMALL_STATE(529)] = 36557, + [SMALL_STATE(530)] = 36655, + [SMALL_STATE(531)] = 36753, + [SMALL_STATE(532)] = 36851, + [SMALL_STATE(533)] = 36949, + [SMALL_STATE(534)] = 37047, + [SMALL_STATE(535)] = 37145, + [SMALL_STATE(536)] = 37243, + [SMALL_STATE(537)] = 37341, + [SMALL_STATE(538)] = 37439, + [SMALL_STATE(539)] = 37537, + [SMALL_STATE(540)] = 37635, + [SMALL_STATE(541)] = 37733, + [SMALL_STATE(542)] = 37831, + [SMALL_STATE(543)] = 37929, + [SMALL_STATE(544)] = 38027, + [SMALL_STATE(545)] = 38125, + [SMALL_STATE(546)] = 38223, + [SMALL_STATE(547)] = 38321, + [SMALL_STATE(548)] = 38419, + [SMALL_STATE(549)] = 38517, + [SMALL_STATE(550)] = 38615, + [SMALL_STATE(551)] = 38713, + [SMALL_STATE(552)] = 38811, + [SMALL_STATE(553)] = 38909, + [SMALL_STATE(554)] = 39007, + [SMALL_STATE(555)] = 39105, + [SMALL_STATE(556)] = 39203, + [SMALL_STATE(557)] = 39301, + [SMALL_STATE(558)] = 39399, + [SMALL_STATE(559)] = 39497, + [SMALL_STATE(560)] = 39595, + [SMALL_STATE(561)] = 39693, + [SMALL_STATE(562)] = 39791, + [SMALL_STATE(563)] = 39889, + [SMALL_STATE(564)] = 39987, + [SMALL_STATE(565)] = 40085, + [SMALL_STATE(566)] = 40157, + [SMALL_STATE(567)] = 40255, + [SMALL_STATE(568)] = 40353, + [SMALL_STATE(569)] = 40453, + [SMALL_STATE(570)] = 40551, + [SMALL_STATE(571)] = 40651, + [SMALL_STATE(572)] = 40723, + [SMALL_STATE(573)] = 40823, + [SMALL_STATE(574)] = 40921, [SMALL_STATE(575)] = 41021, [SMALL_STATE(576)] = 41119, [SMALL_STATE(577)] = 41217, - [SMALL_STATE(578)] = 41315, - [SMALL_STATE(579)] = 41413, - [SMALL_STATE(580)] = 41511, - [SMALL_STATE(581)] = 41609, - [SMALL_STATE(582)] = 41707, + [SMALL_STATE(578)] = 41317, + [SMALL_STATE(579)] = 41415, + [SMALL_STATE(580)] = 41513, + [SMALL_STATE(581)] = 41611, + [SMALL_STATE(582)] = 41709, [SMALL_STATE(583)] = 41807, - [SMALL_STATE(584)] = 41905, - [SMALL_STATE(585)] = 42003, - [SMALL_STATE(586)] = 42101, - [SMALL_STATE(587)] = 42199, - [SMALL_STATE(588)] = 42297, - [SMALL_STATE(589)] = 42395, - [SMALL_STATE(590)] = 42495, - [SMALL_STATE(591)] = 42567, - [SMALL_STATE(592)] = 42639, - [SMALL_STATE(593)] = 42737, - [SMALL_STATE(594)] = 42835, - [SMALL_STATE(595)] = 42907, + [SMALL_STATE(584)] = 41879, + [SMALL_STATE(585)] = 41977, + [SMALL_STATE(586)] = 42049, + [SMALL_STATE(587)] = 42147, + [SMALL_STATE(588)] = 42219, + [SMALL_STATE(589)] = 42317, + [SMALL_STATE(590)] = 42415, + [SMALL_STATE(591)] = 42513, + [SMALL_STATE(592)] = 42585, + [SMALL_STATE(593)] = 42683, + [SMALL_STATE(594)] = 42781, + [SMALL_STATE(595)] = 42879, [SMALL_STATE(596)] = 42979, [SMALL_STATE(597)] = 43077, [SMALL_STATE(598)] = 43175, @@ -124658,86 +124658,86 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(608)] = 44155, [SMALL_STATE(609)] = 44253, [SMALL_STATE(610)] = 44326, - [SMALL_STATE(611)] = 44394, - [SMALL_STATE(612)] = 44462, - [SMALL_STATE(613)] = 44528, - [SMALL_STATE(614)] = 44596, - [SMALL_STATE(615)] = 44664, - [SMALL_STATE(616)] = 44732, - [SMALL_STATE(617)] = 44800, - [SMALL_STATE(618)] = 44866, - [SMALL_STATE(619)] = 44934, - [SMALL_STATE(620)] = 45002, - [SMALL_STATE(621)] = 45070, - [SMALL_STATE(622)] = 45138, - [SMALL_STATE(623)] = 45200, - [SMALL_STATE(624)] = 45262, - [SMALL_STATE(625)] = 45324, - [SMALL_STATE(626)] = 45386, + [SMALL_STATE(611)] = 44388, + [SMALL_STATE(612)] = 44450, + [SMALL_STATE(613)] = 44518, + [SMALL_STATE(614)] = 44586, + [SMALL_STATE(615)] = 44654, + [SMALL_STATE(616)] = 44722, + [SMALL_STATE(617)] = 44784, + [SMALL_STATE(618)] = 44852, + [SMALL_STATE(619)] = 44920, + [SMALL_STATE(620)] = 44986, + [SMALL_STATE(621)] = 45048, + [SMALL_STATE(622)] = 45114, + [SMALL_STATE(623)] = 45182, + [SMALL_STATE(624)] = 45250, + [SMALL_STATE(625)] = 45316, + [SMALL_STATE(626)] = 45384, [SMALL_STATE(627)] = 45452, [SMALL_STATE(628)] = 45509, [SMALL_STATE(629)] = 45572, - [SMALL_STATE(630)] = 45635, - [SMALL_STATE(631)] = 45698, + [SMALL_STATE(630)] = 45633, + [SMALL_STATE(631)] = 45696, [SMALL_STATE(632)] = 45761, [SMALL_STATE(633)] = 45824, [SMALL_STATE(634)] = 45887, [SMALL_STATE(635)] = 45950, [SMALL_STATE(636)] = 46013, - [SMALL_STATE(637)] = 46078, - [SMALL_STATE(638)] = 46135, - [SMALL_STATE(639)] = 46196, - [SMALL_STATE(640)] = 46257, - [SMALL_STATE(641)] = 46320, - [SMALL_STATE(642)] = 46383, + [SMALL_STATE(637)] = 46076, + [SMALL_STATE(638)] = 46139, + [SMALL_STATE(639)] = 46202, + [SMALL_STATE(640)] = 46259, + [SMALL_STATE(641)] = 46316, + [SMALL_STATE(642)] = 46379, [SMALL_STATE(643)] = 46440, [SMALL_STATE(644)] = 46497, [SMALL_STATE(645)] = 46554, - [SMALL_STATE(646)] = 46611, + [SMALL_STATE(646)] = 46615, [SMALL_STATE(647)] = 46672, [SMALL_STATE(648)] = 46729, [SMALL_STATE(649)] = 46785, [SMALL_STATE(650)] = 46841, [SMALL_STATE(651)] = 46897, - [SMALL_STATE(652)] = 46953, - [SMALL_STATE(653)] = 47009, - [SMALL_STATE(654)] = 47065, - [SMALL_STATE(655)] = 47121, - [SMALL_STATE(656)] = 47177, + [SMALL_STATE(652)] = 46989, + [SMALL_STATE(653)] = 47045, + [SMALL_STATE(654)] = 47101, + [SMALL_STATE(655)] = 47157, + [SMALL_STATE(656)] = 47213, [SMALL_STATE(657)] = 47269, [SMALL_STATE(658)] = 47325, [SMALL_STATE(659)] = 47381, [SMALL_STATE(660)] = 47437, [SMALL_STATE(661)] = 47493, - [SMALL_STATE(662)] = 47549, - [SMALL_STATE(663)] = 47605, - [SMALL_STATE(664)] = 47661, - [SMALL_STATE(665)] = 47717, - [SMALL_STATE(666)] = 47773, - [SMALL_STATE(667)] = 47829, - [SMALL_STATE(668)] = 47885, - [SMALL_STATE(669)] = 47941, - [SMALL_STATE(670)] = 47997, - [SMALL_STATE(671)] = 48053, - [SMALL_STATE(672)] = 48109, - [SMALL_STATE(673)] = 48165, - [SMALL_STATE(674)] = 48221, - [SMALL_STATE(675)] = 48277, - [SMALL_STATE(676)] = 48333, - [SMALL_STATE(677)] = 48389, - [SMALL_STATE(678)] = 48445, - [SMALL_STATE(679)] = 48501, - [SMALL_STATE(680)] = 48557, - [SMALL_STATE(681)] = 48613, - [SMALL_STATE(682)] = 48669, - [SMALL_STATE(683)] = 48725, - [SMALL_STATE(684)] = 48781, - [SMALL_STATE(685)] = 48837, - [SMALL_STATE(686)] = 48893, - [SMALL_STATE(687)] = 48949, - [SMALL_STATE(688)] = 49005, - [SMALL_STATE(689)] = 49061, - [SMALL_STATE(690)] = 49117, + [SMALL_STATE(662)] = 47585, + [SMALL_STATE(663)] = 47641, + [SMALL_STATE(664)] = 47697, + [SMALL_STATE(665)] = 47753, + [SMALL_STATE(666)] = 47809, + [SMALL_STATE(667)] = 47865, + [SMALL_STATE(668)] = 47921, + [SMALL_STATE(669)] = 47977, + [SMALL_STATE(670)] = 48033, + [SMALL_STATE(671)] = 48089, + [SMALL_STATE(672)] = 48145, + [SMALL_STATE(673)] = 48201, + [SMALL_STATE(674)] = 48257, + [SMALL_STATE(675)] = 48313, + [SMALL_STATE(676)] = 48369, + [SMALL_STATE(677)] = 48425, + [SMALL_STATE(678)] = 48481, + [SMALL_STATE(679)] = 48537, + [SMALL_STATE(680)] = 48593, + [SMALL_STATE(681)] = 48649, + [SMALL_STATE(682)] = 48705, + [SMALL_STATE(683)] = 48761, + [SMALL_STATE(684)] = 48817, + [SMALL_STATE(685)] = 48873, + [SMALL_STATE(686)] = 48929, + [SMALL_STATE(687)] = 48985, + [SMALL_STATE(688)] = 49041, + [SMALL_STATE(689)] = 49097, + [SMALL_STATE(690)] = 49153, [SMALL_STATE(691)] = 49209, [SMALL_STATE(692)] = 49265, [SMALL_STATE(693)] = 49321, @@ -124751,30 +124751,30 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(701)] = 49772, [SMALL_STATE(702)] = 49827, [SMALL_STATE(703)] = 49886, - [SMALL_STATE(704)] = 49945, - [SMALL_STATE(705)] = 50004, - [SMALL_STATE(706)] = 50063, - [SMALL_STATE(707)] = 50122, - [SMALL_STATE(708)] = 50177, - [SMALL_STATE(709)] = 50236, + [SMALL_STATE(704)] = 49941, + [SMALL_STATE(705)] = 50000, + [SMALL_STATE(706)] = 50059, + [SMALL_STATE(707)] = 50114, + [SMALL_STATE(708)] = 50173, + [SMALL_STATE(709)] = 50232, [SMALL_STATE(710)] = 50291, - [SMALL_STATE(711)] = 50346, - [SMALL_STATE(712)] = 50405, - [SMALL_STATE(713)] = 50464, - [SMALL_STATE(714)] = 50523, - [SMALL_STATE(715)] = 50578, - [SMALL_STATE(716)] = 50637, - [SMALL_STATE(717)] = 50692, - [SMALL_STATE(718)] = 50751, - [SMALL_STATE(719)] = 50810, + [SMALL_STATE(711)] = 50350, + [SMALL_STATE(712)] = 50409, + [SMALL_STATE(713)] = 50468, + [SMALL_STATE(714)] = 50527, + [SMALL_STATE(715)] = 50582, + [SMALL_STATE(716)] = 50641, + [SMALL_STATE(717)] = 50700, + [SMALL_STATE(718)] = 50755, + [SMALL_STATE(719)] = 50814, [SMALL_STATE(720)] = 50869, [SMALL_STATE(721)] = 50928, [SMALL_STATE(722)] = 50987, - [SMALL_STATE(723)] = 51079, - [SMALL_STATE(724)] = 51133, - [SMALL_STATE(725)] = 51225, - [SMALL_STATE(726)] = 51279, - [SMALL_STATE(727)] = 51333, + [SMALL_STATE(723)] = 51041, + [SMALL_STATE(724)] = 51095, + [SMALL_STATE(725)] = 51149, + [SMALL_STATE(726)] = 51203, + [SMALL_STATE(727)] = 51295, [SMALL_STATE(728)] = 51387, [SMALL_STATE(729)] = 51440, [SMALL_STATE(730)] = 51493, @@ -124787,17 +124787,17 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(737)] = 51864, [SMALL_STATE(738)] = 51917, [SMALL_STATE(739)] = 51970, - [SMALL_STATE(740)] = 52023, - [SMALL_STATE(741)] = 52076, - [SMALL_STATE(742)] = 52129, + [SMALL_STATE(740)] = 52059, + [SMALL_STATE(741)] = 52112, + [SMALL_STATE(742)] = 52165, [SMALL_STATE(743)] = 52218, - [SMALL_STATE(744)] = 52307, - [SMALL_STATE(745)] = 52360, - [SMALL_STATE(746)] = 52413, - [SMALL_STATE(747)] = 52466, - [SMALL_STATE(748)] = 52519, - [SMALL_STATE(749)] = 52572, - [SMALL_STATE(750)] = 52625, + [SMALL_STATE(744)] = 52271, + [SMALL_STATE(745)] = 52324, + [SMALL_STATE(746)] = 52377, + [SMALL_STATE(747)] = 52430, + [SMALL_STATE(748)] = 52483, + [SMALL_STATE(749)] = 52536, + [SMALL_STATE(750)] = 52589, [SMALL_STATE(751)] = 52678, [SMALL_STATE(752)] = 52731, [SMALL_STATE(753)] = 52784, @@ -124813,52 +124813,52 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(763)] = 53314, [SMALL_STATE(764)] = 53367, [SMALL_STATE(765)] = 53420, - [SMALL_STATE(766)] = 53473, - [SMALL_STATE(767)] = 53526, - [SMALL_STATE(768)] = 53615, + [SMALL_STATE(766)] = 53509, + [SMALL_STATE(767)] = 53598, + [SMALL_STATE(768)] = 53651, [SMALL_STATE(769)] = 53704, - [SMALL_STATE(770)] = 53757, - [SMALL_STATE(771)] = 53810, - [SMALL_STATE(772)] = 53863, - [SMALL_STATE(773)] = 53916, - [SMALL_STATE(774)] = 53969, - [SMALL_STATE(775)] = 54022, - [SMALL_STATE(776)] = 54075, - [SMALL_STATE(777)] = 54128, - [SMALL_STATE(778)] = 54181, - [SMALL_STATE(779)] = 54234, - [SMALL_STATE(780)] = 54287, - [SMALL_STATE(781)] = 54376, + [SMALL_STATE(770)] = 53793, + [SMALL_STATE(771)] = 53846, + [SMALL_STATE(772)] = 53899, + [SMALL_STATE(773)] = 53952, + [SMALL_STATE(774)] = 54005, + [SMALL_STATE(775)] = 54058, + [SMALL_STATE(776)] = 54147, + [SMALL_STATE(777)] = 54200, + [SMALL_STATE(778)] = 54253, + [SMALL_STATE(779)] = 54306, + [SMALL_STATE(780)] = 54359, + [SMALL_STATE(781)] = 54412, [SMALL_STATE(782)] = 54465, [SMALL_STATE(783)] = 54518, [SMALL_STATE(784)] = 54571, [SMALL_STATE(785)] = 54624, [SMALL_STATE(786)] = 54677, - [SMALL_STATE(787)] = 54730, - [SMALL_STATE(788)] = 54783, - [SMALL_STATE(789)] = 54836, - [SMALL_STATE(790)] = 54889, - [SMALL_STATE(791)] = 54942, - [SMALL_STATE(792)] = 54995, - [SMALL_STATE(793)] = 55048, - [SMALL_STATE(794)] = 55101, + [SMALL_STATE(787)] = 54766, + [SMALL_STATE(788)] = 54819, + [SMALL_STATE(789)] = 54872, + [SMALL_STATE(790)] = 54925, + [SMALL_STATE(791)] = 54978, + [SMALL_STATE(792)] = 55031, + [SMALL_STATE(793)] = 55084, + [SMALL_STATE(794)] = 55137, [SMALL_STATE(795)] = 55190, [SMALL_STATE(796)] = 55243, - [SMALL_STATE(797)] = 55332, - [SMALL_STATE(798)] = 55385, - [SMALL_STATE(799)] = 55474, - [SMALL_STATE(800)] = 55563, - [SMALL_STATE(801)] = 55616, - [SMALL_STATE(802)] = 55669, - [SMALL_STATE(803)] = 55722, - [SMALL_STATE(804)] = 55775, - [SMALL_STATE(805)] = 55828, - [SMALL_STATE(806)] = 55881, - [SMALL_STATE(807)] = 55934, - [SMALL_STATE(808)] = 55987, - [SMALL_STATE(809)] = 56040, - [SMALL_STATE(810)] = 56093, - [SMALL_STATE(811)] = 56146, + [SMALL_STATE(797)] = 55296, + [SMALL_STATE(798)] = 55349, + [SMALL_STATE(799)] = 55402, + [SMALL_STATE(800)] = 55455, + [SMALL_STATE(801)] = 55508, + [SMALL_STATE(802)] = 55597, + [SMALL_STATE(803)] = 55686, + [SMALL_STATE(804)] = 55739, + [SMALL_STATE(805)] = 55792, + [SMALL_STATE(806)] = 55845, + [SMALL_STATE(807)] = 55898, + [SMALL_STATE(808)] = 55951, + [SMALL_STATE(809)] = 56004, + [SMALL_STATE(810)] = 56057, + [SMALL_STATE(811)] = 56110, [SMALL_STATE(812)] = 56199, [SMALL_STATE(813)] = 56252, [SMALL_STATE(814)] = 56305, @@ -124889,15 +124889,15 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(839)] = 57630, [SMALL_STATE(840)] = 57683, [SMALL_STATE(841)] = 57736, - [SMALL_STATE(842)] = 57789, - [SMALL_STATE(843)] = 57842, - [SMALL_STATE(844)] = 57895, - [SMALL_STATE(845)] = 57984, - [SMALL_STATE(846)] = 58073, - [SMALL_STATE(847)] = 58126, - [SMALL_STATE(848)] = 58179, - [SMALL_STATE(849)] = 58268, - [SMALL_STATE(850)] = 58357, + [SMALL_STATE(842)] = 57825, + [SMALL_STATE(843)] = 57878, + [SMALL_STATE(844)] = 57931, + [SMALL_STATE(845)] = 58020, + [SMALL_STATE(846)] = 58109, + [SMALL_STATE(847)] = 58198, + [SMALL_STATE(848)] = 58287, + [SMALL_STATE(849)] = 58340, + [SMALL_STATE(850)] = 58393, [SMALL_STATE(851)] = 58446, [SMALL_STATE(852)] = 58535, [SMALL_STATE(853)] = 58621, @@ -124908,630 +124908,630 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(858)] = 59051, [SMALL_STATE(859)] = 59134, [SMALL_STATE(860)] = 59217, - [SMALL_STATE(861)] = 59295, - [SMALL_STATE(862)] = 59373, - [SMALL_STATE(863)] = 59451, - [SMALL_STATE(864)] = 59529, - [SMALL_STATE(865)] = 59607, + [SMALL_STATE(861)] = 59303, + [SMALL_STATE(862)] = 59381, + [SMALL_STATE(863)] = 59459, + [SMALL_STATE(864)] = 59537, + [SMALL_STATE(865)] = 59615, [SMALL_STATE(866)] = 59693, [SMALL_STATE(867)] = 59771, [SMALL_STATE(868)] = 59849, [SMALL_STATE(869)] = 59927, - [SMALL_STATE(870)] = 60002, - [SMALL_STATE(871)] = 60077, - [SMALL_STATE(872)] = 60152, - [SMALL_STATE(873)] = 60227, - [SMALL_STATE(874)] = 60302, - [SMALL_STATE(875)] = 60377, - [SMALL_STATE(876)] = 60456, - [SMALL_STATE(877)] = 60531, - [SMALL_STATE(878)] = 60610, - [SMALL_STATE(879)] = 60685, - [SMALL_STATE(880)] = 60760, - [SMALL_STATE(881)] = 60835, - [SMALL_STATE(882)] = 60910, - [SMALL_STATE(883)] = 60985, + [SMALL_STATE(870)] = 60006, + [SMALL_STATE(871)] = 60081, + [SMALL_STATE(872)] = 60156, + [SMALL_STATE(873)] = 60235, + [SMALL_STATE(874)] = 60310, + [SMALL_STATE(875)] = 60389, + [SMALL_STATE(876)] = 60464, + [SMALL_STATE(877)] = 60539, + [SMALL_STATE(878)] = 60614, + [SMALL_STATE(879)] = 60689, + [SMALL_STATE(880)] = 60764, + [SMALL_STATE(881)] = 60839, + [SMALL_STATE(882)] = 60914, + [SMALL_STATE(883)] = 60989, [SMALL_STATE(884)] = 61064, [SMALL_STATE(885)] = 61139, - [SMALL_STATE(886)] = 61214, - [SMALL_STATE(887)] = 61293, - [SMALL_STATE(888)] = 61368, - [SMALL_STATE(889)] = 61443, - [SMALL_STATE(890)] = 61518, - [SMALL_STATE(891)] = 61593, - [SMALL_STATE(892)] = 61668, - [SMALL_STATE(893)] = 61743, - [SMALL_STATE(894)] = 61822, - [SMALL_STATE(895)] = 61897, - [SMALL_STATE(896)] = 61972, - [SMALL_STATE(897)] = 62047, - [SMALL_STATE(898)] = 62122, - [SMALL_STATE(899)] = 62197, - [SMALL_STATE(900)] = 62272, - [SMALL_STATE(901)] = 62347, - [SMALL_STATE(902)] = 62422, - [SMALL_STATE(903)] = 62497, - [SMALL_STATE(904)] = 62576, - [SMALL_STATE(905)] = 62651, - [SMALL_STATE(906)] = 62726, - [SMALL_STATE(907)] = 62801, - [SMALL_STATE(908)] = 62876, - [SMALL_STATE(909)] = 62955, - [SMALL_STATE(910)] = 63040, - [SMALL_STATE(911)] = 63115, - [SMALL_STATE(912)] = 63190, - [SMALL_STATE(913)] = 63275, - [SMALL_STATE(914)] = 63354, - [SMALL_STATE(915)] = 63429, - [SMALL_STATE(916)] = 63508, - [SMALL_STATE(917)] = 63587, - [SMALL_STATE(918)] = 63662, - [SMALL_STATE(919)] = 63737, - [SMALL_STATE(920)] = 63812, - [SMALL_STATE(921)] = 63891, - [SMALL_STATE(922)] = 63966, - [SMALL_STATE(923)] = 64041, - [SMALL_STATE(924)] = 64116, - [SMALL_STATE(925)] = 64191, - [SMALL_STATE(926)] = 64266, - [SMALL_STATE(927)] = 64345, - [SMALL_STATE(928)] = 64420, - [SMALL_STATE(929)] = 64495, - [SMALL_STATE(930)] = 64574, - [SMALL_STATE(931)] = 64649, - [SMALL_STATE(932)] = 64724, - [SMALL_STATE(933)] = 64799, - [SMALL_STATE(934)] = 64874, - [SMALL_STATE(935)] = 64949, - [SMALL_STATE(936)] = 65024, - [SMALL_STATE(937)] = 65099, - [SMALL_STATE(938)] = 65174, - [SMALL_STATE(939)] = 65249, - [SMALL_STATE(940)] = 65324, - [SMALL_STATE(941)] = 65399, - [SMALL_STATE(942)] = 65474, - [SMALL_STATE(943)] = 65549, - [SMALL_STATE(944)] = 65628, - [SMALL_STATE(945)] = 65703, - [SMALL_STATE(946)] = 65782, - [SMALL_STATE(947)] = 65857, - [SMALL_STATE(948)] = 65932, - [SMALL_STATE(949)] = 66007, + [SMALL_STATE(886)] = 61218, + [SMALL_STATE(887)] = 61297, + [SMALL_STATE(888)] = 61376, + [SMALL_STATE(889)] = 61451, + [SMALL_STATE(890)] = 61530, + [SMALL_STATE(891)] = 61609, + [SMALL_STATE(892)] = 61688, + [SMALL_STATE(893)] = 61767, + [SMALL_STATE(894)] = 61842, + [SMALL_STATE(895)] = 61917, + [SMALL_STATE(896)] = 61996, + [SMALL_STATE(897)] = 62071, + [SMALL_STATE(898)] = 62146, + [SMALL_STATE(899)] = 62221, + [SMALL_STATE(900)] = 62296, + [SMALL_STATE(901)] = 62371, + [SMALL_STATE(902)] = 62446, + [SMALL_STATE(903)] = 62521, + [SMALL_STATE(904)] = 62596, + [SMALL_STATE(905)] = 62681, + [SMALL_STATE(906)] = 62756, + [SMALL_STATE(907)] = 62831, + [SMALL_STATE(908)] = 62906, + [SMALL_STATE(909)] = 62981, + [SMALL_STATE(910)] = 63056, + [SMALL_STATE(911)] = 63131, + [SMALL_STATE(912)] = 63206, + [SMALL_STATE(913)] = 63281, + [SMALL_STATE(914)] = 63356, + [SMALL_STATE(915)] = 63431, + [SMALL_STATE(916)] = 63506, + [SMALL_STATE(917)] = 63581, + [SMALL_STATE(918)] = 63656, + [SMALL_STATE(919)] = 63731, + [SMALL_STATE(920)] = 63806, + [SMALL_STATE(921)] = 63885, + [SMALL_STATE(922)] = 63960, + [SMALL_STATE(923)] = 64035, + [SMALL_STATE(924)] = 64110, + [SMALL_STATE(925)] = 64185, + [SMALL_STATE(926)] = 64264, + [SMALL_STATE(927)] = 64339, + [SMALL_STATE(928)] = 64414, + [SMALL_STATE(929)] = 64489, + [SMALL_STATE(930)] = 64564, + [SMALL_STATE(931)] = 64639, + [SMALL_STATE(932)] = 64714, + [SMALL_STATE(933)] = 64789, + [SMALL_STATE(934)] = 64864, + [SMALL_STATE(935)] = 64939, + [SMALL_STATE(936)] = 65014, + [SMALL_STATE(937)] = 65089, + [SMALL_STATE(938)] = 65164, + [SMALL_STATE(939)] = 65239, + [SMALL_STATE(940)] = 65314, + [SMALL_STATE(941)] = 65389, + [SMALL_STATE(942)] = 65464, + [SMALL_STATE(943)] = 65539, + [SMALL_STATE(944)] = 65614, + [SMALL_STATE(945)] = 65689, + [SMALL_STATE(946)] = 65764, + [SMALL_STATE(947)] = 65849, + [SMALL_STATE(948)] = 65928, + [SMALL_STATE(949)] = 66003, [SMALL_STATE(950)] = 66082, [SMALL_STATE(951)] = 66157, - [SMALL_STATE(952)] = 66232, - [SMALL_STATE(953)] = 66307, - [SMALL_STATE(954)] = 66382, - [SMALL_STATE(955)] = 66461, - [SMALL_STATE(956)] = 66536, - [SMALL_STATE(957)] = 66611, - [SMALL_STATE(958)] = 66686, - [SMALL_STATE(959)] = 66765, - [SMALL_STATE(960)] = 66844, - [SMALL_STATE(961)] = 66923, - [SMALL_STATE(962)] = 66998, + [SMALL_STATE(952)] = 66236, + [SMALL_STATE(953)] = 66315, + [SMALL_STATE(954)] = 66394, + [SMALL_STATE(955)] = 66473, + [SMALL_STATE(956)] = 66548, + [SMALL_STATE(957)] = 66623, + [SMALL_STATE(958)] = 66698, + [SMALL_STATE(959)] = 66777, + [SMALL_STATE(960)] = 66852, + [SMALL_STATE(961)] = 66927, + [SMALL_STATE(962)] = 67002, [SMALL_STATE(963)] = 67077, [SMALL_STATE(964)] = 67161, - [SMALL_STATE(965)] = 67213, - [SMALL_STATE(966)] = 67297, - [SMALL_STATE(967)] = 67379, - [SMALL_STATE(968)] = 67463, - [SMALL_STATE(969)] = 67515, - [SMALL_STATE(970)] = 67567, + [SMALL_STATE(965)] = 67245, + [SMALL_STATE(966)] = 67329, + [SMALL_STATE(967)] = 67381, + [SMALL_STATE(968)] = 67433, + [SMALL_STATE(969)] = 67517, + [SMALL_STATE(970)] = 67569, [SMALL_STATE(971)] = 67651, - [SMALL_STATE(972)] = 67702, - [SMALL_STATE(973)] = 67753, - [SMALL_STATE(974)] = 67810, - [SMALL_STATE(975)] = 67873, - [SMALL_STATE(976)] = 67924, - [SMALL_STATE(977)] = 68005, - [SMALL_STATE(978)] = 68076, - [SMALL_STATE(979)] = 68127, - [SMALL_STATE(980)] = 68178, - [SMALL_STATE(981)] = 68235, - [SMALL_STATE(982)] = 68292, - [SMALL_STATE(983)] = 68361, - [SMALL_STATE(984)] = 68418, - [SMALL_STATE(985)] = 68469, - [SMALL_STATE(986)] = 68530, - [SMALL_STATE(987)] = 68595, + [SMALL_STATE(972)] = 67708, + [SMALL_STATE(973)] = 67779, + [SMALL_STATE(974)] = 67830, + [SMALL_STATE(975)] = 67891, + [SMALL_STATE(976)] = 67960, + [SMALL_STATE(977)] = 68027, + [SMALL_STATE(978)] = 68090, + [SMALL_STATE(979)] = 68147, + [SMALL_STATE(980)] = 68228, + [SMALL_STATE(981)] = 68279, + [SMALL_STATE(982)] = 68330, + [SMALL_STATE(983)] = 68381, + [SMALL_STATE(984)] = 68432, + [SMALL_STATE(985)] = 68489, + [SMALL_STATE(986)] = 68554, + [SMALL_STATE(987)] = 68605, [SMALL_STATE(988)] = 68662, - [SMALL_STATE(989)] = 68718, - [SMALL_STATE(990)] = 68774, - [SMALL_STATE(991)] = 68834, - [SMALL_STATE(992)] = 68914, - [SMALL_STATE(993)] = 68960, - [SMALL_STATE(994)] = 69010, - [SMALL_STATE(995)] = 69070, - [SMALL_STATE(996)] = 69120, - [SMALL_STATE(997)] = 69170, - [SMALL_STATE(998)] = 69216, - [SMALL_STATE(999)] = 69286, - [SMALL_STATE(1000)] = 69342, - [SMALL_STATE(1001)] = 69410, - [SMALL_STATE(1002)] = 69460, - [SMALL_STATE(1003)] = 69526, - [SMALL_STATE(1004)] = 69590, - [SMALL_STATE(1005)] = 69640, - [SMALL_STATE(1006)] = 69686, - [SMALL_STATE(1007)] = 69736, - [SMALL_STATE(1008)] = 69792, - [SMALL_STATE(1009)] = 69872, - [SMALL_STATE(1010)] = 69920, - [SMALL_STATE(1011)] = 69970, - [SMALL_STATE(1012)] = 70036, - [SMALL_STATE(1013)] = 70100, - [SMALL_STATE(1014)] = 70156, - [SMALL_STATE(1015)] = 70218, - [SMALL_STATE(1016)] = 70268, - [SMALL_STATE(1017)] = 70314, - [SMALL_STATE(1018)] = 70370, - [SMALL_STATE(1019)] = 70416, - [SMALL_STATE(1020)] = 70462, - [SMALL_STATE(1021)] = 70512, - [SMALL_STATE(1022)] = 70568, - [SMALL_STATE(1023)] = 70618, - [SMALL_STATE(1024)] = 70666, - [SMALL_STATE(1025)] = 70734, - [SMALL_STATE(1026)] = 70796, - [SMALL_STATE(1027)] = 70852, - [SMALL_STATE(1028)] = 70898, - [SMALL_STATE(1029)] = 70948, - [SMALL_STATE(1030)] = 70998, - [SMALL_STATE(1031)] = 71078, - [SMALL_STATE(1032)] = 71148, - [SMALL_STATE(1033)] = 71194, - [SMALL_STATE(1034)] = 71240, + [SMALL_STATE(989)] = 68712, + [SMALL_STATE(990)] = 68768, + [SMALL_STATE(991)] = 68830, + [SMALL_STATE(992)] = 68910, + [SMALL_STATE(993)] = 68956, + [SMALL_STATE(994)] = 69012, + [SMALL_STATE(995)] = 69058, + [SMALL_STATE(996)] = 69108, + [SMALL_STATE(997)] = 69164, + [SMALL_STATE(998)] = 69224, + [SMALL_STATE(999)] = 69292, + [SMALL_STATE(1000)] = 69338, + [SMALL_STATE(1001)] = 69404, + [SMALL_STATE(1002)] = 69468, + [SMALL_STATE(1003)] = 69514, + [SMALL_STATE(1004)] = 69564, + [SMALL_STATE(1005)] = 69610, + [SMALL_STATE(1006)] = 69656, + [SMALL_STATE(1007)] = 69704, + [SMALL_STATE(1008)] = 69754, + [SMALL_STATE(1009)] = 69802, + [SMALL_STATE(1010)] = 69850, + [SMALL_STATE(1011)] = 69896, + [SMALL_STATE(1012)] = 69946, + [SMALL_STATE(1013)] = 69996, + [SMALL_STATE(1014)] = 70060, + [SMALL_STATE(1015)] = 70126, + [SMALL_STATE(1016)] = 70194, + [SMALL_STATE(1017)] = 70254, + [SMALL_STATE(1018)] = 70310, + [SMALL_STATE(1019)] = 70380, + [SMALL_STATE(1020)] = 70442, + [SMALL_STATE(1021)] = 70498, + [SMALL_STATE(1022)] = 70544, + [SMALL_STATE(1023)] = 70594, + [SMALL_STATE(1024)] = 70674, + [SMALL_STATE(1025)] = 70724, + [SMALL_STATE(1026)] = 70774, + [SMALL_STATE(1027)] = 70824, + [SMALL_STATE(1028)] = 70870, + [SMALL_STATE(1029)] = 70950, + [SMALL_STATE(1030)] = 71020, + [SMALL_STATE(1031)] = 71076, + [SMALL_STATE(1032)] = 71126, + [SMALL_STATE(1033)] = 71182, + [SMALL_STATE(1034)] = 71232, [SMALL_STATE(1035)] = 71288, [SMALL_STATE(1036)] = 71333, - [SMALL_STATE(1037)] = 71396, - [SMALL_STATE(1038)] = 71441, - [SMALL_STATE(1039)] = 71486, - [SMALL_STATE(1040)] = 71531, - [SMALL_STATE(1041)] = 71576, - [SMALL_STATE(1042)] = 71621, - [SMALL_STATE(1043)] = 71666, - [SMALL_STATE(1044)] = 71711, - [SMALL_STATE(1045)] = 71760, - [SMALL_STATE(1046)] = 71809, - [SMALL_STATE(1047)] = 71858, - [SMALL_STATE(1048)] = 71905, - [SMALL_STATE(1049)] = 71952, - [SMALL_STATE(1050)] = 71999, - [SMALL_STATE(1051)] = 72054, - [SMALL_STATE(1052)] = 72109, - [SMALL_STATE(1053)] = 72160, - [SMALL_STATE(1054)] = 72211, - [SMALL_STATE(1055)] = 72262, - [SMALL_STATE(1056)] = 72307, - [SMALL_STATE(1057)] = 72362, - [SMALL_STATE(1058)] = 72423, + [SMALL_STATE(1037)] = 71388, + [SMALL_STATE(1038)] = 71443, + [SMALL_STATE(1039)] = 71502, + [SMALL_STATE(1040)] = 71569, + [SMALL_STATE(1041)] = 71616, + [SMALL_STATE(1042)] = 71663, + [SMALL_STATE(1043)] = 71710, + [SMALL_STATE(1044)] = 71775, + [SMALL_STATE(1045)] = 71838, + [SMALL_STATE(1046)] = 71887, + [SMALL_STATE(1047)] = 71932, + [SMALL_STATE(1048)] = 71977, + [SMALL_STATE(1049)] = 72026, + [SMALL_STATE(1050)] = 72075, + [SMALL_STATE(1051)] = 72120, + [SMALL_STATE(1052)] = 72169, + [SMALL_STATE(1053)] = 72218, + [SMALL_STATE(1054)] = 72263, + [SMALL_STATE(1055)] = 72312, + [SMALL_STATE(1056)] = 72357, + [SMALL_STATE(1057)] = 72402, + [SMALL_STATE(1058)] = 72447, [SMALL_STATE(1059)] = 72492, - [SMALL_STATE(1060)] = 72547, - [SMALL_STATE(1061)] = 72606, - [SMALL_STATE(1062)] = 72673, - [SMALL_STATE(1063)] = 72738, - [SMALL_STATE(1064)] = 72801, - [SMALL_STATE(1065)] = 72846, - [SMALL_STATE(1066)] = 72891, - [SMALL_STATE(1067)] = 72936, - [SMALL_STATE(1068)] = 72981, - [SMALL_STATE(1069)] = 73026, - [SMALL_STATE(1070)] = 73071, - [SMALL_STATE(1071)] = 73120, - [SMALL_STATE(1072)] = 73169, - [SMALL_STATE(1073)] = 73214, - [SMALL_STATE(1074)] = 73265, - [SMALL_STATE(1075)] = 73310, - [SMALL_STATE(1076)] = 73365, - [SMALL_STATE(1077)] = 73420, - [SMALL_STATE(1078)] = 73465, - [SMALL_STATE(1079)] = 73510, - [SMALL_STATE(1080)] = 73555, - [SMALL_STATE(1081)] = 73610, - [SMALL_STATE(1082)] = 73671, - [SMALL_STATE(1083)] = 73740, - [SMALL_STATE(1084)] = 73795, - [SMALL_STATE(1085)] = 73854, - [SMALL_STATE(1086)] = 73921, - [SMALL_STATE(1087)] = 73986, - [SMALL_STATE(1088)] = 74049, - [SMALL_STATE(1089)] = 74094, - [SMALL_STATE(1090)] = 74139, - [SMALL_STATE(1091)] = 74184, - [SMALL_STATE(1092)] = 74229, - [SMALL_STATE(1093)] = 74274, - [SMALL_STATE(1094)] = 74319, - [SMALL_STATE(1095)] = 74364, - [SMALL_STATE(1096)] = 74419, - [SMALL_STATE(1097)] = 74474, - [SMALL_STATE(1098)] = 74519, - [SMALL_STATE(1099)] = 74574, - [SMALL_STATE(1100)] = 74635, - [SMALL_STATE(1101)] = 74704, - [SMALL_STATE(1102)] = 74759, - [SMALL_STATE(1103)] = 74818, - [SMALL_STATE(1104)] = 74885, - [SMALL_STATE(1105)] = 74950, - [SMALL_STATE(1106)] = 75013, - [SMALL_STATE(1107)] = 75058, - [SMALL_STATE(1108)] = 75107, - [SMALL_STATE(1109)] = 75154, - [SMALL_STATE(1110)] = 75201, - [SMALL_STATE(1111)] = 75248, - [SMALL_STATE(1112)] = 75297, - [SMALL_STATE(1113)] = 75346, - [SMALL_STATE(1114)] = 75391, - [SMALL_STATE(1115)] = 75440, - [SMALL_STATE(1116)] = 75489, - [SMALL_STATE(1117)] = 75538, - [SMALL_STATE(1118)] = 75583, - [SMALL_STATE(1119)] = 75628, - [SMALL_STATE(1120)] = 75673, - [SMALL_STATE(1121)] = 75724, - [SMALL_STATE(1122)] = 75779, - [SMALL_STATE(1123)] = 75834, - [SMALL_STATE(1124)] = 75879, - [SMALL_STATE(1125)] = 75924, - [SMALL_STATE(1126)] = 75969, - [SMALL_STATE(1127)] = 76014, - [SMALL_STATE(1128)] = 76069, - [SMALL_STATE(1129)] = 76130, - [SMALL_STATE(1130)] = 76199, - [SMALL_STATE(1131)] = 76254, - [SMALL_STATE(1132)] = 76313, - [SMALL_STATE(1133)] = 76380, - [SMALL_STATE(1134)] = 76445, + [SMALL_STATE(1060)] = 72537, + [SMALL_STATE(1061)] = 72582, + [SMALL_STATE(1062)] = 72627, + [SMALL_STATE(1063)] = 72672, + [SMALL_STATE(1064)] = 72717, + [SMALL_STATE(1065)] = 72764, + [SMALL_STATE(1066)] = 72809, + [SMALL_STATE(1067)] = 72854, + [SMALL_STATE(1068)] = 72901, + [SMALL_STATE(1069)] = 72948, + [SMALL_STATE(1070)] = 72997, + [SMALL_STATE(1071)] = 73042, + [SMALL_STATE(1072)] = 73087, + [SMALL_STATE(1073)] = 73148, + [SMALL_STATE(1074)] = 73193, + [SMALL_STATE(1075)] = 73238, + [SMALL_STATE(1076)] = 73293, + [SMALL_STATE(1077)] = 73338, + [SMALL_STATE(1078)] = 73387, + [SMALL_STATE(1079)] = 73436, + [SMALL_STATE(1080)] = 73499, + [SMALL_STATE(1081)] = 73564, + [SMALL_STATE(1082)] = 73615, + [SMALL_STATE(1083)] = 73660, + [SMALL_STATE(1084)] = 73705, + [SMALL_STATE(1085)] = 73774, + [SMALL_STATE(1086)] = 73819, + [SMALL_STATE(1087)] = 73886, + [SMALL_STATE(1088)] = 73945, + [SMALL_STATE(1089)] = 74000, + [SMALL_STATE(1090)] = 74055, + [SMALL_STATE(1091)] = 74116, + [SMALL_STATE(1092)] = 74185, + [SMALL_STATE(1093)] = 74240, + [SMALL_STATE(1094)] = 74299, + [SMALL_STATE(1095)] = 74366, + [SMALL_STATE(1096)] = 74421, + [SMALL_STATE(1097)] = 74476, + [SMALL_STATE(1098)] = 74521, + [SMALL_STATE(1099)] = 74586, + [SMALL_STATE(1100)] = 74655, + [SMALL_STATE(1101)] = 74706, + [SMALL_STATE(1102)] = 74751, + [SMALL_STATE(1103)] = 74812, + [SMALL_STATE(1104)] = 74867, + [SMALL_STATE(1105)] = 74912, + [SMALL_STATE(1106)] = 74957, + [SMALL_STATE(1107)] = 75006, + [SMALL_STATE(1108)] = 75061, + [SMALL_STATE(1109)] = 75124, + [SMALL_STATE(1110)] = 75189, + [SMALL_STATE(1111)] = 75240, + [SMALL_STATE(1112)] = 75295, + [SMALL_STATE(1113)] = 75362, + [SMALL_STATE(1114)] = 75421, + [SMALL_STATE(1115)] = 75476, + [SMALL_STATE(1116)] = 75545, + [SMALL_STATE(1117)] = 75606, + [SMALL_STATE(1118)] = 75661, + [SMALL_STATE(1119)] = 75706, + [SMALL_STATE(1120)] = 75755, + [SMALL_STATE(1121)] = 75800, + [SMALL_STATE(1122)] = 75855, + [SMALL_STATE(1123)] = 75906, + [SMALL_STATE(1124)] = 75951, + [SMALL_STATE(1125)] = 76014, + [SMALL_STATE(1126)] = 76069, + [SMALL_STATE(1127)] = 76124, + [SMALL_STATE(1128)] = 76169, + [SMALL_STATE(1129)] = 76218, + [SMALL_STATE(1130)] = 76263, + [SMALL_STATE(1131)] = 76308, + [SMALL_STATE(1132)] = 76353, + [SMALL_STATE(1133)] = 76398, + [SMALL_STATE(1134)] = 76449, [SMALL_STATE(1135)] = 76494, [SMALL_STATE(1136)] = 76538, [SMALL_STATE(1137)] = 76582, - [SMALL_STATE(1138)] = 76630, + [SMALL_STATE(1138)] = 76626, [SMALL_STATE(1139)] = 76674, - [SMALL_STATE(1140)] = 76720, - [SMALL_STATE(1141)] = 76766, - [SMALL_STATE(1142)] = 76810, - [SMALL_STATE(1143)] = 76856, - [SMALL_STATE(1144)] = 76904, - [SMALL_STATE(1145)] = 76952, - [SMALL_STATE(1146)] = 76998, - [SMALL_STATE(1147)] = 77044, - [SMALL_STATE(1148)] = 77090, - [SMALL_STATE(1149)] = 77136, - [SMALL_STATE(1150)] = 77180, - [SMALL_STATE(1151)] = 77224, - [SMALL_STATE(1152)] = 77268, - [SMALL_STATE(1153)] = 77312, - [SMALL_STATE(1154)] = 77356, - [SMALL_STATE(1155)] = 77400, - [SMALL_STATE(1156)] = 77444, - [SMALL_STATE(1157)] = 77488, - [SMALL_STATE(1158)] = 77532, - [SMALL_STATE(1159)] = 77576, - [SMALL_STATE(1160)] = 77620, - [SMALL_STATE(1161)] = 77664, - [SMALL_STATE(1162)] = 77708, - [SMALL_STATE(1163)] = 77752, - [SMALL_STATE(1164)] = 77796, - [SMALL_STATE(1165)] = 77840, - [SMALL_STATE(1166)] = 77884, - [SMALL_STATE(1167)] = 77928, - [SMALL_STATE(1168)] = 77972, - [SMALL_STATE(1169)] = 78016, - [SMALL_STATE(1170)] = 78060, - [SMALL_STATE(1171)] = 78104, - [SMALL_STATE(1172)] = 78148, - [SMALL_STATE(1173)] = 78192, - [SMALL_STATE(1174)] = 78238, - [SMALL_STATE(1175)] = 78284, - [SMALL_STATE(1176)] = 78330, - [SMALL_STATE(1177)] = 78376, - [SMALL_STATE(1178)] = 78420, - [SMALL_STATE(1179)] = 78464, - [SMALL_STATE(1180)] = 78508, - [SMALL_STATE(1181)] = 78552, - [SMALL_STATE(1182)] = 78596, - [SMALL_STATE(1183)] = 78640, - [SMALL_STATE(1184)] = 78684, - [SMALL_STATE(1185)] = 78728, - [SMALL_STATE(1186)] = 78772, - [SMALL_STATE(1187)] = 78816, - [SMALL_STATE(1188)] = 78864, - [SMALL_STATE(1189)] = 78908, - [SMALL_STATE(1190)] = 78952, - [SMALL_STATE(1191)] = 78996, - [SMALL_STATE(1192)] = 79040, - [SMALL_STATE(1193)] = 79084, - [SMALL_STATE(1194)] = 79128, - [SMALL_STATE(1195)] = 79172, - [SMALL_STATE(1196)] = 79216, - [SMALL_STATE(1197)] = 79260, - [SMALL_STATE(1198)] = 79304, - [SMALL_STATE(1199)] = 79348, - [SMALL_STATE(1200)] = 79392, - [SMALL_STATE(1201)] = 79436, - [SMALL_STATE(1202)] = 79480, - [SMALL_STATE(1203)] = 79524, - [SMALL_STATE(1204)] = 79568, - [SMALL_STATE(1205)] = 79612, - [SMALL_STATE(1206)] = 79660, - [SMALL_STATE(1207)] = 79704, - [SMALL_STATE(1208)] = 79748, - [SMALL_STATE(1209)] = 79792, - [SMALL_STATE(1210)] = 79836, - [SMALL_STATE(1211)] = 79880, - [SMALL_STATE(1212)] = 79924, - [SMALL_STATE(1213)] = 79968, - [SMALL_STATE(1214)] = 80016, - [SMALL_STATE(1215)] = 80060, - [SMALL_STATE(1216)] = 80104, - [SMALL_STATE(1217)] = 80154, - [SMALL_STATE(1218)] = 80208, - [SMALL_STATE(1219)] = 80262, - [SMALL_STATE(1220)] = 80312, - [SMALL_STATE(1221)] = 80356, - [SMALL_STATE(1222)] = 80400, - [SMALL_STATE(1223)] = 80444, - [SMALL_STATE(1224)] = 80498, - [SMALL_STATE(1225)] = 80558, - [SMALL_STATE(1226)] = 80626, - [SMALL_STATE(1227)] = 80680, - [SMALL_STATE(1228)] = 80738, - [SMALL_STATE(1229)] = 80804, - [SMALL_STATE(1230)] = 80868, - [SMALL_STATE(1231)] = 80930, - [SMALL_STATE(1232)] = 80978, - [SMALL_STATE(1233)] = 81026, - [SMALL_STATE(1234)] = 81074, - [SMALL_STATE(1235)] = 81122, - [SMALL_STATE(1236)] = 81170, - [SMALL_STATE(1237)] = 81214, - [SMALL_STATE(1238)] = 81262, - [SMALL_STATE(1239)] = 81306, - [SMALL_STATE(1240)] = 81354, - [SMALL_STATE(1241)] = 81402, - [SMALL_STATE(1242)] = 81448, - [SMALL_STATE(1243)] = 81494, - [SMALL_STATE(1244)] = 81540, - [SMALL_STATE(1245)] = 81586, - [SMALL_STATE(1246)] = 81630, - [SMALL_STATE(1247)] = 81678, - [SMALL_STATE(1248)] = 81726, - [SMALL_STATE(1249)] = 81774, - [SMALL_STATE(1250)] = 81820, - [SMALL_STATE(1251)] = 81866, - [SMALL_STATE(1252)] = 81910, - [SMALL_STATE(1253)] = 81954, - [SMALL_STATE(1254)] = 81998, + [SMALL_STATE(1140)] = 76718, + [SMALL_STATE(1141)] = 76762, + [SMALL_STATE(1142)] = 76806, + [SMALL_STATE(1143)] = 76850, + [SMALL_STATE(1144)] = 76894, + [SMALL_STATE(1145)] = 76942, + [SMALL_STATE(1146)] = 76990, + [SMALL_STATE(1147)] = 77034, + [SMALL_STATE(1148)] = 77078, + [SMALL_STATE(1149)] = 77122, + [SMALL_STATE(1150)] = 77166, + [SMALL_STATE(1151)] = 77212, + [SMALL_STATE(1152)] = 77258, + [SMALL_STATE(1153)] = 77304, + [SMALL_STATE(1154)] = 77350, + [SMALL_STATE(1155)] = 77396, + [SMALL_STATE(1156)] = 77442, + [SMALL_STATE(1157)] = 77486, + [SMALL_STATE(1158)] = 77530, + [SMALL_STATE(1159)] = 77574, + [SMALL_STATE(1160)] = 77618, + [SMALL_STATE(1161)] = 77662, + [SMALL_STATE(1162)] = 77706, + [SMALL_STATE(1163)] = 77750, + [SMALL_STATE(1164)] = 77794, + [SMALL_STATE(1165)] = 77838, + [SMALL_STATE(1166)] = 77882, + [SMALL_STATE(1167)] = 77926, + [SMALL_STATE(1168)] = 77974, + [SMALL_STATE(1169)] = 78022, + [SMALL_STATE(1170)] = 78070, + [SMALL_STATE(1171)] = 78114, + [SMALL_STATE(1172)] = 78158, + [SMALL_STATE(1173)] = 78202, + [SMALL_STATE(1174)] = 78248, + [SMALL_STATE(1175)] = 78292, + [SMALL_STATE(1176)] = 78336, + [SMALL_STATE(1177)] = 78380, + [SMALL_STATE(1178)] = 78424, + [SMALL_STATE(1179)] = 78468, + [SMALL_STATE(1180)] = 78514, + [SMALL_STATE(1181)] = 78558, + [SMALL_STATE(1182)] = 78602, + [SMALL_STATE(1183)] = 78650, + [SMALL_STATE(1184)] = 78694, + [SMALL_STATE(1185)] = 78742, + [SMALL_STATE(1186)] = 78786, + [SMALL_STATE(1187)] = 78830, + [SMALL_STATE(1188)] = 78874, + [SMALL_STATE(1189)] = 78918, + [SMALL_STATE(1190)] = 78964, + [SMALL_STATE(1191)] = 79018, + [SMALL_STATE(1192)] = 79066, + [SMALL_STATE(1193)] = 79114, + [SMALL_STATE(1194)] = 79162, + [SMALL_STATE(1195)] = 79210, + [SMALL_STATE(1196)] = 79264, + [SMALL_STATE(1197)] = 79308, + [SMALL_STATE(1198)] = 79356, + [SMALL_STATE(1199)] = 79402, + [SMALL_STATE(1200)] = 79446, + [SMALL_STATE(1201)] = 79492, + [SMALL_STATE(1202)] = 79538, + [SMALL_STATE(1203)] = 79582, + [SMALL_STATE(1204)] = 79628, + [SMALL_STATE(1205)] = 79674, + [SMALL_STATE(1206)] = 79720, + [SMALL_STATE(1207)] = 79766, + [SMALL_STATE(1208)] = 79810, + [SMALL_STATE(1209)] = 79854, + [SMALL_STATE(1210)] = 79898, + [SMALL_STATE(1211)] = 79942, + [SMALL_STATE(1212)] = 79988, + [SMALL_STATE(1213)] = 80032, + [SMALL_STATE(1214)] = 80076, + [SMALL_STATE(1215)] = 80120, + [SMALL_STATE(1216)] = 80164, + [SMALL_STATE(1217)] = 80208, + [SMALL_STATE(1218)] = 80252, + [SMALL_STATE(1219)] = 80296, + [SMALL_STATE(1220)] = 80340, + [SMALL_STATE(1221)] = 80390, + [SMALL_STATE(1222)] = 80434, + [SMALL_STATE(1223)] = 80478, + [SMALL_STATE(1224)] = 80522, + [SMALL_STATE(1225)] = 80566, + [SMALL_STATE(1226)] = 80610, + [SMALL_STATE(1227)] = 80654, + [SMALL_STATE(1228)] = 80698, + [SMALL_STATE(1229)] = 80742, + [SMALL_STATE(1230)] = 80796, + [SMALL_STATE(1231)] = 80856, + [SMALL_STATE(1232)] = 80924, + [SMALL_STATE(1233)] = 80978, + [SMALL_STATE(1234)] = 81022, + [SMALL_STATE(1235)] = 81080, + [SMALL_STATE(1236)] = 81146, + [SMALL_STATE(1237)] = 81210, + [SMALL_STATE(1238)] = 81272, + [SMALL_STATE(1239)] = 81316, + [SMALL_STATE(1240)] = 81360, + [SMALL_STATE(1241)] = 81408, + [SMALL_STATE(1242)] = 81456, + [SMALL_STATE(1243)] = 81506, + [SMALL_STATE(1244)] = 81554, + [SMALL_STATE(1245)] = 81598, + [SMALL_STATE(1246)] = 81642, + [SMALL_STATE(1247)] = 81686, + [SMALL_STATE(1248)] = 81734, + [SMALL_STATE(1249)] = 81782, + [SMALL_STATE(1250)] = 81826, + [SMALL_STATE(1251)] = 81870, + [SMALL_STATE(1252)] = 81914, + [SMALL_STATE(1253)] = 81958, + [SMALL_STATE(1254)] = 82002, [SMALL_STATE(1255)] = 82046, [SMALL_STATE(1256)] = 82090, [SMALL_STATE(1257)] = 82133, - [SMALL_STATE(1258)] = 82178, - [SMALL_STATE(1259)] = 82221, - [SMALL_STATE(1260)] = 82264, - [SMALL_STATE(1261)] = 82307, - [SMALL_STATE(1262)] = 82358, - [SMALL_STATE(1263)] = 82401, - [SMALL_STATE(1264)] = 82444, - [SMALL_STATE(1265)] = 82487, - [SMALL_STATE(1266)] = 82530, - [SMALL_STATE(1267)] = 82573, + [SMALL_STATE(1258)] = 82176, + [SMALL_STATE(1259)] = 82219, + [SMALL_STATE(1260)] = 82270, + [SMALL_STATE(1261)] = 82313, + [SMALL_STATE(1262)] = 82356, + [SMALL_STATE(1263)] = 82399, + [SMALL_STATE(1264)] = 82442, + [SMALL_STATE(1265)] = 82485, + [SMALL_STATE(1266)] = 82528, + [SMALL_STATE(1267)] = 82571, [SMALL_STATE(1268)] = 82616, [SMALL_STATE(1269)] = 82659, [SMALL_STATE(1270)] = 82702, [SMALL_STATE(1271)] = 82745, - [SMALL_STATE(1272)] = 82792, - [SMALL_STATE(1273)] = 82839, - [SMALL_STATE(1274)] = 82886, - [SMALL_STATE(1275)] = 82931, - [SMALL_STATE(1276)] = 82976, - [SMALL_STATE(1277)] = 83021, - [SMALL_STATE(1278)] = 83064, - [SMALL_STATE(1279)] = 83107, - [SMALL_STATE(1280)] = 83150, - [SMALL_STATE(1281)] = 83193, - [SMALL_STATE(1282)] = 83236, - [SMALL_STATE(1283)] = 83279, - [SMALL_STATE(1284)] = 83322, - [SMALL_STATE(1285)] = 83365, - [SMALL_STATE(1286)] = 83408, - [SMALL_STATE(1287)] = 83451, - [SMALL_STATE(1288)] = 83494, - [SMALL_STATE(1289)] = 83537, - [SMALL_STATE(1290)] = 83580, - [SMALL_STATE(1291)] = 83623, - [SMALL_STATE(1292)] = 83666, - [SMALL_STATE(1293)] = 83709, - [SMALL_STATE(1294)] = 83752, - [SMALL_STATE(1295)] = 83795, - [SMALL_STATE(1296)] = 83838, - [SMALL_STATE(1297)] = 83881, - [SMALL_STATE(1298)] = 83924, + [SMALL_STATE(1272)] = 82788, + [SMALL_STATE(1273)] = 82831, + [SMALL_STATE(1274)] = 82874, + [SMALL_STATE(1275)] = 82917, + [SMALL_STATE(1276)] = 82960, + [SMALL_STATE(1277)] = 83003, + [SMALL_STATE(1278)] = 83050, + [SMALL_STATE(1279)] = 83097, + [SMALL_STATE(1280)] = 83144, + [SMALL_STATE(1281)] = 83187, + [SMALL_STATE(1282)] = 83230, + [SMALL_STATE(1283)] = 83273, + [SMALL_STATE(1284)] = 83320, + [SMALL_STATE(1285)] = 83363, + [SMALL_STATE(1286)] = 83406, + [SMALL_STATE(1287)] = 83449, + [SMALL_STATE(1288)] = 83492, + [SMALL_STATE(1289)] = 83535, + [SMALL_STATE(1290)] = 83578, + [SMALL_STATE(1291)] = 83621, + [SMALL_STATE(1292)] = 83664, + [SMALL_STATE(1293)] = 83707, + [SMALL_STATE(1294)] = 83750, + [SMALL_STATE(1295)] = 83793, + [SMALL_STATE(1296)] = 83836, + [SMALL_STATE(1297)] = 83879, + [SMALL_STATE(1298)] = 83922, [SMALL_STATE(1299)] = 83967, - [SMALL_STATE(1300)] = 84010, - [SMALL_STATE(1301)] = 84053, - [SMALL_STATE(1302)] = 84096, - [SMALL_STATE(1303)] = 84139, - [SMALL_STATE(1304)] = 84182, - [SMALL_STATE(1305)] = 84225, - [SMALL_STATE(1306)] = 84268, - [SMALL_STATE(1307)] = 84311, - [SMALL_STATE(1308)] = 84354, - [SMALL_STATE(1309)] = 84397, - [SMALL_STATE(1310)] = 84440, - [SMALL_STATE(1311)] = 84483, - [SMALL_STATE(1312)] = 84526, - [SMALL_STATE(1313)] = 84569, - [SMALL_STATE(1314)] = 84612, - [SMALL_STATE(1315)] = 84655, - [SMALL_STATE(1316)] = 84698, - [SMALL_STATE(1317)] = 84741, - [SMALL_STATE(1318)] = 84784, - [SMALL_STATE(1319)] = 84827, - [SMALL_STATE(1320)] = 84870, - [SMALL_STATE(1321)] = 84913, - [SMALL_STATE(1322)] = 84956, - [SMALL_STATE(1323)] = 84999, - [SMALL_STATE(1324)] = 85042, - [SMALL_STATE(1325)] = 85085, - [SMALL_STATE(1326)] = 85128, - [SMALL_STATE(1327)] = 85171, - [SMALL_STATE(1328)] = 85214, - [SMALL_STATE(1329)] = 85257, - [SMALL_STATE(1330)] = 85300, - [SMALL_STATE(1331)] = 85343, - [SMALL_STATE(1332)] = 85386, - [SMALL_STATE(1333)] = 85429, - [SMALL_STATE(1334)] = 85472, - [SMALL_STATE(1335)] = 85515, - [SMALL_STATE(1336)] = 85558, - [SMALL_STATE(1337)] = 85601, - [SMALL_STATE(1338)] = 85644, - [SMALL_STATE(1339)] = 85687, - [SMALL_STATE(1340)] = 85734, - [SMALL_STATE(1341)] = 85777, - [SMALL_STATE(1342)] = 85820, - [SMALL_STATE(1343)] = 85863, - [SMALL_STATE(1344)] = 85906, - [SMALL_STATE(1345)] = 85949, - [SMALL_STATE(1346)] = 85992, - [SMALL_STATE(1347)] = 86035, - [SMALL_STATE(1348)] = 86078, - [SMALL_STATE(1349)] = 86125, - [SMALL_STATE(1350)] = 86172, - [SMALL_STATE(1351)] = 86219, - [SMALL_STATE(1352)] = 86262, - [SMALL_STATE(1353)] = 86307, - [SMALL_STATE(1354)] = 86352, - [SMALL_STATE(1355)] = 86397, - [SMALL_STATE(1356)] = 86444, - [SMALL_STATE(1357)] = 86487, - [SMALL_STATE(1358)] = 86534, - [SMALL_STATE(1359)] = 86579, - [SMALL_STATE(1360)] = 86626, - [SMALL_STATE(1361)] = 86669, - [SMALL_STATE(1362)] = 86712, - [SMALL_STATE(1363)] = 86755, - [SMALL_STATE(1364)] = 86798, - [SMALL_STATE(1365)] = 86841, - [SMALL_STATE(1366)] = 86884, - [SMALL_STATE(1367)] = 86927, - [SMALL_STATE(1368)] = 86970, - [SMALL_STATE(1369)] = 87015, - [SMALL_STATE(1370)] = 87060, - [SMALL_STATE(1371)] = 87105, - [SMALL_STATE(1372)] = 87150, - [SMALL_STATE(1373)] = 87195, - [SMALL_STATE(1374)] = 87238, - [SMALL_STATE(1375)] = 87281, - [SMALL_STATE(1376)] = 87328, - [SMALL_STATE(1377)] = 87375, - [SMALL_STATE(1378)] = 87420, - [SMALL_STATE(1379)] = 87465, - [SMALL_STATE(1380)] = 87508, - [SMALL_STATE(1381)] = 87551, - [SMALL_STATE(1382)] = 87596, - [SMALL_STATE(1383)] = 87641, - [SMALL_STATE(1384)] = 87684, - [SMALL_STATE(1385)] = 87727, - [SMALL_STATE(1386)] = 87772, - [SMALL_STATE(1387)] = 87815, - [SMALL_STATE(1388)] = 87858, - [SMALL_STATE(1389)] = 87901, - [SMALL_STATE(1390)] = 87944, - [SMALL_STATE(1391)] = 87987, - [SMALL_STATE(1392)] = 88030, - [SMALL_STATE(1393)] = 88073, - [SMALL_STATE(1394)] = 88124, - [SMALL_STATE(1395)] = 88167, - [SMALL_STATE(1396)] = 88210, - [SMALL_STATE(1397)] = 88253, - [SMALL_STATE(1398)] = 88296, - [SMALL_STATE(1399)] = 88339, - [SMALL_STATE(1400)] = 88386, - [SMALL_STATE(1401)] = 88433, - [SMALL_STATE(1402)] = 88480, - [SMALL_STATE(1403)] = 88523, - [SMALL_STATE(1404)] = 88566, - [SMALL_STATE(1405)] = 88611, - [SMALL_STATE(1406)] = 88654, - [SMALL_STATE(1407)] = 88697, - [SMALL_STATE(1408)] = 88740, - [SMALL_STATE(1409)] = 88783, - [SMALL_STATE(1410)] = 88826, - [SMALL_STATE(1411)] = 88869, - [SMALL_STATE(1412)] = 88912, - [SMALL_STATE(1413)] = 88955, - [SMALL_STATE(1414)] = 88998, - [SMALL_STATE(1415)] = 89041, + [SMALL_STATE(1300)] = 84014, + [SMALL_STATE(1301)] = 84057, + [SMALL_STATE(1302)] = 84104, + [SMALL_STATE(1303)] = 84149, + [SMALL_STATE(1304)] = 84196, + [SMALL_STATE(1305)] = 84243, + [SMALL_STATE(1306)] = 84288, + [SMALL_STATE(1307)] = 84333, + [SMALL_STATE(1308)] = 84376, + [SMALL_STATE(1309)] = 84419, + [SMALL_STATE(1310)] = 84462, + [SMALL_STATE(1311)] = 84505, + [SMALL_STATE(1312)] = 84548, + [SMALL_STATE(1313)] = 84591, + [SMALL_STATE(1314)] = 84634, + [SMALL_STATE(1315)] = 84677, + [SMALL_STATE(1316)] = 84720, + [SMALL_STATE(1317)] = 84763, + [SMALL_STATE(1318)] = 84810, + [SMALL_STATE(1319)] = 84857, + [SMALL_STATE(1320)] = 84904, + [SMALL_STATE(1321)] = 84947, + [SMALL_STATE(1322)] = 84990, + [SMALL_STATE(1323)] = 85033, + [SMALL_STATE(1324)] = 85076, + [SMALL_STATE(1325)] = 85119, + [SMALL_STATE(1326)] = 85162, + [SMALL_STATE(1327)] = 85207, + [SMALL_STATE(1328)] = 85250, + [SMALL_STATE(1329)] = 85293, + [SMALL_STATE(1330)] = 85336, + [SMALL_STATE(1331)] = 85379, + [SMALL_STATE(1332)] = 85422, + [SMALL_STATE(1333)] = 85465, + [SMALL_STATE(1334)] = 85508, + [SMALL_STATE(1335)] = 85551, + [SMALL_STATE(1336)] = 85594, + [SMALL_STATE(1337)] = 85637, + [SMALL_STATE(1338)] = 85680, + [SMALL_STATE(1339)] = 85723, + [SMALL_STATE(1340)] = 85766, + [SMALL_STATE(1341)] = 85809, + [SMALL_STATE(1342)] = 85852, + [SMALL_STATE(1343)] = 85897, + [SMALL_STATE(1344)] = 85940, + [SMALL_STATE(1345)] = 85983, + [SMALL_STATE(1346)] = 86026, + [SMALL_STATE(1347)] = 86069, + [SMALL_STATE(1348)] = 86112, + [SMALL_STATE(1349)] = 86155, + [SMALL_STATE(1350)] = 86198, + [SMALL_STATE(1351)] = 86241, + [SMALL_STATE(1352)] = 86284, + [SMALL_STATE(1353)] = 86327, + [SMALL_STATE(1354)] = 86370, + [SMALL_STATE(1355)] = 86413, + [SMALL_STATE(1356)] = 86456, + [SMALL_STATE(1357)] = 86499, + [SMALL_STATE(1358)] = 86542, + [SMALL_STATE(1359)] = 86585, + [SMALL_STATE(1360)] = 86628, + [SMALL_STATE(1361)] = 86671, + [SMALL_STATE(1362)] = 86714, + [SMALL_STATE(1363)] = 86757, + [SMALL_STATE(1364)] = 86800, + [SMALL_STATE(1365)] = 86845, + [SMALL_STATE(1366)] = 86888, + [SMALL_STATE(1367)] = 86931, + [SMALL_STATE(1368)] = 86974, + [SMALL_STATE(1369)] = 87019, + [SMALL_STATE(1370)] = 87066, + [SMALL_STATE(1371)] = 87113, + [SMALL_STATE(1372)] = 87164, + [SMALL_STATE(1373)] = 87209, + [SMALL_STATE(1374)] = 87252, + [SMALL_STATE(1375)] = 87295, + [SMALL_STATE(1376)] = 87338, + [SMALL_STATE(1377)] = 87381, + [SMALL_STATE(1378)] = 87426, + [SMALL_STATE(1379)] = 87471, + [SMALL_STATE(1380)] = 87514, + [SMALL_STATE(1381)] = 87557, + [SMALL_STATE(1382)] = 87600, + [SMALL_STATE(1383)] = 87647, + [SMALL_STATE(1384)] = 87690, + [SMALL_STATE(1385)] = 87737, + [SMALL_STATE(1386)] = 87780, + [SMALL_STATE(1387)] = 87823, + [SMALL_STATE(1388)] = 87868, + [SMALL_STATE(1389)] = 87911, + [SMALL_STATE(1390)] = 87954, + [SMALL_STATE(1391)] = 87997, + [SMALL_STATE(1392)] = 88040, + [SMALL_STATE(1393)] = 88085, + [SMALL_STATE(1394)] = 88128, + [SMALL_STATE(1395)] = 88171, + [SMALL_STATE(1396)] = 88214, + [SMALL_STATE(1397)] = 88259, + [SMALL_STATE(1398)] = 88302, + [SMALL_STATE(1399)] = 88345, + [SMALL_STATE(1400)] = 88388, + [SMALL_STATE(1401)] = 88431, + [SMALL_STATE(1402)] = 88474, + [SMALL_STATE(1403)] = 88517, + [SMALL_STATE(1404)] = 88562, + [SMALL_STATE(1405)] = 88605, + [SMALL_STATE(1406)] = 88648, + [SMALL_STATE(1407)] = 88691, + [SMALL_STATE(1408)] = 88734, + [SMALL_STATE(1409)] = 88777, + [SMALL_STATE(1410)] = 88822, + [SMALL_STATE(1411)] = 88865, + [SMALL_STATE(1412)] = 88910, + [SMALL_STATE(1413)] = 88953, + [SMALL_STATE(1414)] = 88996, + [SMALL_STATE(1415)] = 89039, [SMALL_STATE(1416)] = 89084, [SMALL_STATE(1417)] = 89127, [SMALL_STATE(1418)] = 89170, [SMALL_STATE(1419)] = 89213, - [SMALL_STATE(1420)] = 89257, - [SMALL_STATE(1421)] = 89307, - [SMALL_STATE(1422)] = 89349, - [SMALL_STATE(1423)] = 89391, - [SMALL_STATE(1424)] = 89439, - [SMALL_STATE(1425)] = 89481, - [SMALL_STATE(1426)] = 89523, - [SMALL_STATE(1427)] = 89565, - [SMALL_STATE(1428)] = 89607, - [SMALL_STATE(1429)] = 89649, - [SMALL_STATE(1430)] = 89691, - [SMALL_STATE(1431)] = 89735, - [SMALL_STATE(1432)] = 89777, - [SMALL_STATE(1433)] = 89819, - [SMALL_STATE(1434)] = 89863, + [SMALL_STATE(1420)] = 89255, + [SMALL_STATE(1421)] = 89301, + [SMALL_STATE(1422)] = 89343, + [SMALL_STATE(1423)] = 89387, + [SMALL_STATE(1424)] = 89431, + [SMALL_STATE(1425)] = 89475, + [SMALL_STATE(1426)] = 89519, + [SMALL_STATE(1427)] = 89567, + [SMALL_STATE(1428)] = 89611, + [SMALL_STATE(1429)] = 89655, + [SMALL_STATE(1430)] = 89697, + [SMALL_STATE(1431)] = 89739, + [SMALL_STATE(1432)] = 89781, + [SMALL_STATE(1433)] = 89823, + [SMALL_STATE(1434)] = 89865, [SMALL_STATE(1435)] = 89907, - [SMALL_STATE(1436)] = 89951, - [SMALL_STATE(1437)] = 89995, - [SMALL_STATE(1438)] = 90037, - [SMALL_STATE(1439)] = 90081, - [SMALL_STATE(1440)] = 90123, - [SMALL_STATE(1441)] = 90165, - [SMALL_STATE(1442)] = 90207, - [SMALL_STATE(1443)] = 90249, - [SMALL_STATE(1444)] = 90291, - [SMALL_STATE(1445)] = 90333, - [SMALL_STATE(1446)] = 90379, - [SMALL_STATE(1447)] = 90421, - [SMALL_STATE(1448)] = 90463, - [SMALL_STATE(1449)] = 90505, - [SMALL_STATE(1450)] = 90547, - [SMALL_STATE(1451)] = 90589, - [SMALL_STATE(1452)] = 90631, - [SMALL_STATE(1453)] = 90673, - [SMALL_STATE(1454)] = 90715, - [SMALL_STATE(1455)] = 90757, - [SMALL_STATE(1456)] = 90803, - [SMALL_STATE(1457)] = 90845, - [SMALL_STATE(1458)] = 90887, - [SMALL_STATE(1459)] = 90929, - [SMALL_STATE(1460)] = 90975, - [SMALL_STATE(1461)] = 91017, - [SMALL_STATE(1462)] = 91059, - [SMALL_STATE(1463)] = 91101, + [SMALL_STATE(1436)] = 89949, + [SMALL_STATE(1437)] = 89999, + [SMALL_STATE(1438)] = 90041, + [SMALL_STATE(1439)] = 90083, + [SMALL_STATE(1440)] = 90125, + [SMALL_STATE(1441)] = 90167, + [SMALL_STATE(1442)] = 90209, + [SMALL_STATE(1443)] = 90251, + [SMALL_STATE(1444)] = 90293, + [SMALL_STATE(1445)] = 90335, + [SMALL_STATE(1446)] = 90377, + [SMALL_STATE(1447)] = 90419, + [SMALL_STATE(1448)] = 90461, + [SMALL_STATE(1449)] = 90503, + [SMALL_STATE(1450)] = 90545, + [SMALL_STATE(1451)] = 90587, + [SMALL_STATE(1452)] = 90629, + [SMALL_STATE(1453)] = 90671, + [SMALL_STATE(1454)] = 90713, + [SMALL_STATE(1455)] = 90755, + [SMALL_STATE(1456)] = 90797, + [SMALL_STATE(1457)] = 90843, + [SMALL_STATE(1458)] = 90885, + [SMALL_STATE(1459)] = 90931, + [SMALL_STATE(1460)] = 90973, + [SMALL_STATE(1461)] = 91015, + [SMALL_STATE(1462)] = 91057, + [SMALL_STATE(1463)] = 91099, [SMALL_STATE(1464)] = 91143, [SMALL_STATE(1465)] = 91187, [SMALL_STATE(1466)] = 91231, - [SMALL_STATE(1467)] = 91274, + [SMALL_STATE(1467)] = 91272, [SMALL_STATE(1468)] = 91315, - [SMALL_STATE(1469)] = 91356, - [SMALL_STATE(1470)] = 91397, - [SMALL_STATE(1471)] = 91438, - [SMALL_STATE(1472)] = 91479, - [SMALL_STATE(1473)] = 91520, - [SMALL_STATE(1474)] = 91561, - [SMALL_STATE(1475)] = 91604, - [SMALL_STATE(1476)] = 91647, - [SMALL_STATE(1477)] = 91690, - [SMALL_STATE(1478)] = 91731, - [SMALL_STATE(1479)] = 91772, - [SMALL_STATE(1480)] = 91813, - [SMALL_STATE(1481)] = 91856, - [SMALL_STATE(1482)] = 91899, - [SMALL_STATE(1483)] = 91942, - [SMALL_STATE(1484)] = 91985, + [SMALL_STATE(1469)] = 91358, + [SMALL_STATE(1470)] = 91401, + [SMALL_STATE(1471)] = 91444, + [SMALL_STATE(1472)] = 91487, + [SMALL_STATE(1473)] = 91530, + [SMALL_STATE(1474)] = 91571, + [SMALL_STATE(1475)] = 91612, + [SMALL_STATE(1476)] = 91653, + [SMALL_STATE(1477)] = 91694, + [SMALL_STATE(1478)] = 91735, + [SMALL_STATE(1479)] = 91776, + [SMALL_STATE(1480)] = 91819, + [SMALL_STATE(1481)] = 91862, + [SMALL_STATE(1482)] = 91905, + [SMALL_STATE(1483)] = 91946, + [SMALL_STATE(1484)] = 91987, [SMALL_STATE(1485)] = 92028, [SMALL_STATE(1486)] = 92102, [SMALL_STATE(1487)] = 92176, @@ -125601,8 +125601,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1551)] = 96448, [SMALL_STATE(1552)] = 96506, [SMALL_STATE(1553)] = 96564, - [SMALL_STATE(1554)] = 96622, - [SMALL_STATE(1555)] = 96668, + [SMALL_STATE(1554)] = 96610, + [SMALL_STATE(1555)] = 96656, [SMALL_STATE(1556)] = 96714, [SMALL_STATE(1557)] = 96772, [SMALL_STATE(1558)] = 96830, @@ -125611,23 +125611,23 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1561)] = 96976, [SMALL_STATE(1562)] = 97020, [SMALL_STATE(1563)] = 97064, - [SMALL_STATE(1564)] = 97105, + [SMALL_STATE(1564)] = 97107, [SMALL_STATE(1565)] = 97148, [SMALL_STATE(1566)] = 97191, [SMALL_STATE(1567)] = 97232, [SMALL_STATE(1568)] = 97275, [SMALL_STATE(1569)] = 97318, - [SMALL_STATE(1570)] = 97348, - [SMALL_STATE(1571)] = 97380, - [SMALL_STATE(1572)] = 97422, + [SMALL_STATE(1570)] = 97360, + [SMALL_STATE(1571)] = 97402, + [SMALL_STATE(1572)] = 97432, [SMALL_STATE(1573)] = 97464, - [SMALL_STATE(1574)] = 97494, - [SMALL_STATE(1575)] = 97526, - [SMALL_STATE(1576)] = 97568, - [SMALL_STATE(1577)] = 97600, - [SMALL_STATE(1578)] = 97632, - [SMALL_STATE(1579)] = 97664, - [SMALL_STATE(1580)] = 97706, + [SMALL_STATE(1574)] = 97496, + [SMALL_STATE(1575)] = 97528, + [SMALL_STATE(1576)] = 97560, + [SMALL_STATE(1577)] = 97592, + [SMALL_STATE(1578)] = 97624, + [SMALL_STATE(1579)] = 97654, + [SMALL_STATE(1580)] = 97696, [SMALL_STATE(1581)] = 97738, [SMALL_STATE(1582)] = 97768, [SMALL_STATE(1583)] = 97798, @@ -125637,909 +125637,909 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1587)] = 97918, [SMALL_STATE(1588)] = 97948, [SMALL_STATE(1589)] = 97978, - [SMALL_STATE(1590)] = 98025, - [SMALL_STATE(1591)] = 98054, - [SMALL_STATE(1592)] = 98101, - [SMALL_STATE(1593)] = 98126, - [SMALL_STATE(1594)] = 98155, - [SMALL_STATE(1595)] = 98184, - [SMALL_STATE(1596)] = 98213, - [SMALL_STATE(1597)] = 98242, - [SMALL_STATE(1598)] = 98271, - [SMALL_STATE(1599)] = 98300, - [SMALL_STATE(1600)] = 98329, - [SMALL_STATE(1601)] = 98358, - [SMALL_STATE(1602)] = 98387, + [SMALL_STATE(1590)] = 98007, + [SMALL_STATE(1591)] = 98036, + [SMALL_STATE(1592)] = 98065, + [SMALL_STATE(1593)] = 98094, + [SMALL_STATE(1594)] = 98123, + [SMALL_STATE(1595)] = 98170, + [SMALL_STATE(1596)] = 98217, + [SMALL_STATE(1597)] = 98246, + [SMALL_STATE(1598)] = 98275, + [SMALL_STATE(1599)] = 98304, + [SMALL_STATE(1600)] = 98333, + [SMALL_STATE(1601)] = 98362, + [SMALL_STATE(1602)] = 98391, [SMALL_STATE(1603)] = 98416, [SMALL_STATE(1604)] = 98445, - [SMALL_STATE(1605)] = 98470, - [SMALL_STATE(1606)] = 98499, - [SMALL_STATE(1607)] = 98528, - [SMALL_STATE(1608)] = 98557, - [SMALL_STATE(1609)] = 98586, - [SMALL_STATE(1610)] = 98615, - [SMALL_STATE(1611)] = 98640, - [SMALL_STATE(1612)] = 98669, - [SMALL_STATE(1613)] = 98716, - [SMALL_STATE(1614)] = 98745, - [SMALL_STATE(1615)] = 98792, - [SMALL_STATE(1616)] = 98839, - [SMALL_STATE(1617)] = 98886, - [SMALL_STATE(1618)] = 98933, - [SMALL_STATE(1619)] = 98980, - [SMALL_STATE(1620)] = 99027, - [SMALL_STATE(1621)] = 99074, - [SMALL_STATE(1622)] = 99103, - [SMALL_STATE(1623)] = 99132, - [SMALL_STATE(1624)] = 99161, - [SMALL_STATE(1625)] = 99190, - [SMALL_STATE(1626)] = 99219, + [SMALL_STATE(1605)] = 98492, + [SMALL_STATE(1606)] = 98521, + [SMALL_STATE(1607)] = 98568, + [SMALL_STATE(1608)] = 98597, + [SMALL_STATE(1609)] = 98626, + [SMALL_STATE(1610)] = 98655, + [SMALL_STATE(1611)] = 98684, + [SMALL_STATE(1612)] = 98731, + [SMALL_STATE(1613)] = 98760, + [SMALL_STATE(1614)] = 98789, + [SMALL_STATE(1615)] = 98818, + [SMALL_STATE(1616)] = 98847, + [SMALL_STATE(1617)] = 98876, + [SMALL_STATE(1618)] = 98923, + [SMALL_STATE(1619)] = 98948, + [SMALL_STATE(1620)] = 98995, + [SMALL_STATE(1621)] = 99020, + [SMALL_STATE(1622)] = 99067, + [SMALL_STATE(1623)] = 99096, + [SMALL_STATE(1624)] = 99125, + [SMALL_STATE(1625)] = 99150, + [SMALL_STATE(1626)] = 99197, [SMALL_STATE(1627)] = 99244, - [SMALL_STATE(1628)] = 99268, - [SMALL_STATE(1629)] = 99314, - [SMALL_STATE(1630)] = 99360, - [SMALL_STATE(1631)] = 99390, - [SMALL_STATE(1632)] = 99436, - [SMALL_STATE(1633)] = 99468, - [SMALL_STATE(1634)] = 99514, - [SMALL_STATE(1635)] = 99546, - [SMALL_STATE(1636)] = 99592, - [SMALL_STATE(1637)] = 99638, - [SMALL_STATE(1638)] = 99684, - [SMALL_STATE(1639)] = 99730, - [SMALL_STATE(1640)] = 99754, - [SMALL_STATE(1641)] = 99778, - [SMALL_STATE(1642)] = 99806, - [SMALL_STATE(1643)] = 99830, - [SMALL_STATE(1644)] = 99876, + [SMALL_STATE(1628)] = 99272, + [SMALL_STATE(1629)] = 99318, + [SMALL_STATE(1630)] = 99342, + [SMALL_STATE(1631)] = 99388, + [SMALL_STATE(1632)] = 99434, + [SMALL_STATE(1633)] = 99480, + [SMALL_STATE(1634)] = 99526, + [SMALL_STATE(1635)] = 99550, + [SMALL_STATE(1636)] = 99582, + [SMALL_STATE(1637)] = 99610, + [SMALL_STATE(1638)] = 99640, + [SMALL_STATE(1639)] = 99686, + [SMALL_STATE(1640)] = 99718, + [SMALL_STATE(1641)] = 99764, + [SMALL_STATE(1642)] = 99810, + [SMALL_STATE(1643)] = 99856, + [SMALL_STATE(1644)] = 99880, [SMALL_STATE(1645)] = 99904, [SMALL_STATE(1646)] = 99950, [SMALL_STATE(1647)] = 99996, [SMALL_STATE(1648)] = 100039, - [SMALL_STATE(1649)] = 100065, - [SMALL_STATE(1650)] = 100105, - [SMALL_STATE(1651)] = 100145, + [SMALL_STATE(1649)] = 100079, + [SMALL_STATE(1650)] = 100119, + [SMALL_STATE(1651)] = 100159, [SMALL_STATE(1652)] = 100185, [SMALL_STATE(1653)] = 100225, [SMALL_STATE(1654)] = 100262, [SMALL_STATE(1655)] = 100299, - [SMALL_STATE(1656)] = 100340, - [SMALL_STATE(1657)] = 100381, - [SMALL_STATE(1658)] = 100404, - [SMALL_STATE(1659)] = 100423, - [SMALL_STATE(1660)] = 100444, - [SMALL_STATE(1661)] = 100471, - [SMALL_STATE(1662)] = 100498, - [SMALL_STATE(1663)] = 100525, - [SMALL_STATE(1664)] = 100566, - [SMALL_STATE(1665)] = 100585, - [SMALL_STATE(1666)] = 100610, - [SMALL_STATE(1667)] = 100629, - [SMALL_STATE(1668)] = 100670, - [SMALL_STATE(1669)] = 100711, - [SMALL_STATE(1670)] = 100752, + [SMALL_STATE(1656)] = 100324, + [SMALL_STATE(1657)] = 100365, + [SMALL_STATE(1658)] = 100406, + [SMALL_STATE(1659)] = 100447, + [SMALL_STATE(1660)] = 100466, + [SMALL_STATE(1661)] = 100493, + [SMALL_STATE(1662)] = 100534, + [SMALL_STATE(1663)] = 100555, + [SMALL_STATE(1664)] = 100596, + [SMALL_STATE(1665)] = 100637, + [SMALL_STATE(1666)] = 100656, + [SMALL_STATE(1667)] = 100697, + [SMALL_STATE(1668)] = 100716, + [SMALL_STATE(1669)] = 100743, + [SMALL_STATE(1670)] = 100770, [SMALL_STATE(1671)] = 100793, [SMALL_STATE(1672)] = 100834, - [SMALL_STATE(1673)] = 100864, + [SMALL_STATE(1673)] = 100872, [SMALL_STATE(1674)] = 100902, [SMALL_STATE(1675)] = 100932, [SMALL_STATE(1676)] = 100962, [SMALL_STATE(1677)] = 101000, - [SMALL_STATE(1678)] = 101038, - [SMALL_STATE(1679)] = 101068, - [SMALL_STATE(1680)] = 101098, - [SMALL_STATE(1681)] = 101136, - [SMALL_STATE(1682)] = 101174, - [SMALL_STATE(1683)] = 101212, - [SMALL_STATE(1684)] = 101242, - [SMALL_STATE(1685)] = 101272, - [SMALL_STATE(1686)] = 101302, - [SMALL_STATE(1687)] = 101340, - [SMALL_STATE(1688)] = 101378, - [SMALL_STATE(1689)] = 101416, - [SMALL_STATE(1690)] = 101446, - [SMALL_STATE(1691)] = 101476, - [SMALL_STATE(1692)] = 101514, - [SMALL_STATE(1693)] = 101552, - [SMALL_STATE(1694)] = 101590, - [SMALL_STATE(1695)] = 101628, - [SMALL_STATE(1696)] = 101658, - [SMALL_STATE(1697)] = 101688, - [SMALL_STATE(1698)] = 101726, - [SMALL_STATE(1699)] = 101764, - [SMALL_STATE(1700)] = 101794, - [SMALL_STATE(1701)] = 101824, - [SMALL_STATE(1702)] = 101862, - [SMALL_STATE(1703)] = 101900, - [SMALL_STATE(1704)] = 101930, - [SMALL_STATE(1705)] = 101960, - [SMALL_STATE(1706)] = 101998, - [SMALL_STATE(1707)] = 102028, - [SMALL_STATE(1708)] = 102066, - [SMALL_STATE(1709)] = 102104, - [SMALL_STATE(1710)] = 102142, - [SMALL_STATE(1711)] = 102172, - [SMALL_STATE(1712)] = 102210, - [SMALL_STATE(1713)] = 102248, - [SMALL_STATE(1714)] = 102286, - [SMALL_STATE(1715)] = 102324, - [SMALL_STATE(1716)] = 102354, + [SMALL_STATE(1678)] = 101030, + [SMALL_STATE(1679)] = 101060, + [SMALL_STATE(1680)] = 101090, + [SMALL_STATE(1681)] = 101120, + [SMALL_STATE(1682)] = 101158, + [SMALL_STATE(1683)] = 101188, + [SMALL_STATE(1684)] = 101218, + [SMALL_STATE(1685)] = 101248, + [SMALL_STATE(1686)] = 101286, + [SMALL_STATE(1687)] = 101324, + [SMALL_STATE(1688)] = 101354, + [SMALL_STATE(1689)] = 101392, + [SMALL_STATE(1690)] = 101430, + [SMALL_STATE(1691)] = 101468, + [SMALL_STATE(1692)] = 101506, + [SMALL_STATE(1693)] = 101544, + [SMALL_STATE(1694)] = 101574, + [SMALL_STATE(1695)] = 101612, + [SMALL_STATE(1696)] = 101650, + [SMALL_STATE(1697)] = 101680, + [SMALL_STATE(1698)] = 101718, + [SMALL_STATE(1699)] = 101750, + [SMALL_STATE(1700)] = 101788, + [SMALL_STATE(1701)] = 101826, + [SMALL_STATE(1702)] = 101856, + [SMALL_STATE(1703)] = 101886, + [SMALL_STATE(1704)] = 101924, + [SMALL_STATE(1705)] = 101962, + [SMALL_STATE(1706)] = 102000, + [SMALL_STATE(1707)] = 102030, + [SMALL_STATE(1708)] = 102068, + [SMALL_STATE(1709)] = 102098, + [SMALL_STATE(1710)] = 102128, + [SMALL_STATE(1711)] = 102166, + [SMALL_STATE(1712)] = 102204, + [SMALL_STATE(1713)] = 102234, + [SMALL_STATE(1714)] = 102272, + [SMALL_STATE(1715)] = 102310, + [SMALL_STATE(1716)] = 102348, [SMALL_STATE(1717)] = 102386, - [SMALL_STATE(1718)] = 102403, - [SMALL_STATE(1719)] = 102424, - [SMALL_STATE(1720)] = 102441, - [SMALL_STATE(1721)] = 102466, - [SMALL_STATE(1722)] = 102491, - [SMALL_STATE(1723)] = 102516, - [SMALL_STATE(1724)] = 102533, - [SMALL_STATE(1725)] = 102558, - [SMALL_STATE(1726)] = 102581, - [SMALL_STATE(1727)] = 102606, + [SMALL_STATE(1718)] = 102407, + [SMALL_STATE(1719)] = 102432, + [SMALL_STATE(1720)] = 102457, + [SMALL_STATE(1721)] = 102474, + [SMALL_STATE(1722)] = 102499, + [SMALL_STATE(1723)] = 102524, + [SMALL_STATE(1724)] = 102541, + [SMALL_STATE(1725)] = 102566, + [SMALL_STATE(1726)] = 102583, + [SMALL_STATE(1727)] = 102608, [SMALL_STATE(1728)] = 102627, - [SMALL_STATE(1729)] = 102652, - [SMALL_STATE(1730)] = 102669, - [SMALL_STATE(1731)] = 102686, - [SMALL_STATE(1732)] = 102705, - [SMALL_STATE(1733)] = 102734, - [SMALL_STATE(1734)] = 102751, + [SMALL_STATE(1729)] = 102656, + [SMALL_STATE(1730)] = 102673, + [SMALL_STATE(1731)] = 102692, + [SMALL_STATE(1732)] = 102721, + [SMALL_STATE(1733)] = 102742, + [SMALL_STATE(1734)] = 102759, [SMALL_STATE(1735)] = 102776, - [SMALL_STATE(1736)] = 102795, - [SMALL_STATE(1737)] = 102818, + [SMALL_STATE(1736)] = 102799, + [SMALL_STATE(1737)] = 102822, [SMALL_STATE(1738)] = 102847, [SMALL_STATE(1739)] = 102872, - [SMALL_STATE(1740)] = 102896, - [SMALL_STATE(1741)] = 102920, - [SMALL_STATE(1742)] = 102942, - [SMALL_STATE(1743)] = 102962, - [SMALL_STATE(1744)] = 102978, - [SMALL_STATE(1745)] = 102996, - [SMALL_STATE(1746)] = 103014, - [SMALL_STATE(1747)] = 103044, - [SMALL_STATE(1748)] = 103064, - [SMALL_STATE(1749)] = 103086, - [SMALL_STATE(1750)] = 103110, - [SMALL_STATE(1751)] = 103134, - [SMALL_STATE(1752)] = 103150, - [SMALL_STATE(1753)] = 103172, + [SMALL_STATE(1740)] = 102888, + [SMALL_STATE(1741)] = 102912, + [SMALL_STATE(1742)] = 102930, + [SMALL_STATE(1743)] = 102946, + [SMALL_STATE(1744)] = 102966, + [SMALL_STATE(1745)] = 102988, + [SMALL_STATE(1746)] = 103008, + [SMALL_STATE(1747)] = 103032, + [SMALL_STATE(1748)] = 103050, + [SMALL_STATE(1749)] = 103070, + [SMALL_STATE(1750)] = 103100, + [SMALL_STATE(1751)] = 103122, + [SMALL_STATE(1752)] = 103146, + [SMALL_STATE(1753)] = 103170, [SMALL_STATE(1754)] = 103194, - [SMALL_STATE(1755)] = 103212, - [SMALL_STATE(1756)] = 103228, - [SMALL_STATE(1757)] = 103244, - [SMALL_STATE(1758)] = 103264, - [SMALL_STATE(1759)] = 103288, - [SMALL_STATE(1760)] = 103312, - [SMALL_STATE(1761)] = 103336, + [SMALL_STATE(1755)] = 103218, + [SMALL_STATE(1756)] = 103242, + [SMALL_STATE(1757)] = 103260, + [SMALL_STATE(1758)] = 103284, + [SMALL_STATE(1759)] = 103306, + [SMALL_STATE(1760)] = 103326, + [SMALL_STATE(1761)] = 103342, [SMALL_STATE(1762)] = 103360, - [SMALL_STATE(1763)] = 103384, - [SMALL_STATE(1764)] = 103406, - [SMALL_STATE(1765)] = 103426, + [SMALL_STATE(1763)] = 103376, + [SMALL_STATE(1764)] = 103400, + [SMALL_STATE(1765)] = 103422, [SMALL_STATE(1766)] = 103442, - [SMALL_STATE(1767)] = 103460, - [SMALL_STATE(1768)] = 103476, + [SMALL_STATE(1767)] = 103466, + [SMALL_STATE(1768)] = 103482, [SMALL_STATE(1769)] = 103500, - [SMALL_STATE(1770)] = 103524, - [SMALL_STATE(1771)] = 103544, + [SMALL_STATE(1770)] = 103522, + [SMALL_STATE(1771)] = 103538, [SMALL_STATE(1772)] = 103562, [SMALL_STATE(1773)] = 103586, - [SMALL_STATE(1774)] = 103610, + [SMALL_STATE(1774)] = 103606, [SMALL_STATE(1775)] = 103630, - [SMALL_STATE(1776)] = 103653, - [SMALL_STATE(1777)] = 103678, - [SMALL_STATE(1778)] = 103701, - [SMALL_STATE(1779)] = 103728, - [SMALL_STATE(1780)] = 103745, - [SMALL_STATE(1781)] = 103772, - [SMALL_STATE(1782)] = 103799, - [SMALL_STATE(1783)] = 103826, - [SMALL_STATE(1784)] = 103847, - [SMALL_STATE(1785)] = 103876, - [SMALL_STATE(1786)] = 103893, - [SMALL_STATE(1787)] = 103914, - [SMALL_STATE(1788)] = 103937, - [SMALL_STATE(1789)] = 103962, - [SMALL_STATE(1790)] = 103989, - [SMALL_STATE(1791)] = 104018, - [SMALL_STATE(1792)] = 104043, - [SMALL_STATE(1793)] = 104066, - [SMALL_STATE(1794)] = 104083, - [SMALL_STATE(1795)] = 104104, - [SMALL_STATE(1796)] = 104133, - [SMALL_STATE(1797)] = 104158, - [SMALL_STATE(1798)] = 104187, - [SMALL_STATE(1799)] = 104210, - [SMALL_STATE(1800)] = 104235, - [SMALL_STATE(1801)] = 104264, - [SMALL_STATE(1802)] = 104285, - [SMALL_STATE(1803)] = 104306, - [SMALL_STATE(1804)] = 104335, - [SMALL_STATE(1805)] = 104356, - [SMALL_STATE(1806)] = 104379, - [SMALL_STATE(1807)] = 104396, - [SMALL_STATE(1808)] = 104417, - [SMALL_STATE(1809)] = 104434, - [SMALL_STATE(1810)] = 104453, - [SMALL_STATE(1811)] = 104482, - [SMALL_STATE(1812)] = 104503, - [SMALL_STATE(1813)] = 104526, + [SMALL_STATE(1776)] = 103657, + [SMALL_STATE(1777)] = 103674, + [SMALL_STATE(1778)] = 103691, + [SMALL_STATE(1779)] = 103712, + [SMALL_STATE(1780)] = 103741, + [SMALL_STATE(1781)] = 103762, + [SMALL_STATE(1782)] = 103785, + [SMALL_STATE(1783)] = 103810, + [SMALL_STATE(1784)] = 103833, + [SMALL_STATE(1785)] = 103860, + [SMALL_STATE(1786)] = 103885, + [SMALL_STATE(1787)] = 103908, + [SMALL_STATE(1788)] = 103929, + [SMALL_STATE(1789)] = 103950, + [SMALL_STATE(1790)] = 103971, + [SMALL_STATE(1791)] = 103994, + [SMALL_STATE(1792)] = 104017, + [SMALL_STATE(1793)] = 104038, + [SMALL_STATE(1794)] = 104067, + [SMALL_STATE(1795)] = 104088, + [SMALL_STATE(1796)] = 104109, + [SMALL_STATE(1797)] = 104126, + [SMALL_STATE(1798)] = 104155, + [SMALL_STATE(1799)] = 104182, + [SMALL_STATE(1800)] = 104205, + [SMALL_STATE(1801)] = 104234, + [SMALL_STATE(1802)] = 104255, + [SMALL_STATE(1803)] = 104280, + [SMALL_STATE(1804)] = 104301, + [SMALL_STATE(1805)] = 104322, + [SMALL_STATE(1806)] = 104343, + [SMALL_STATE(1807)] = 104372, + [SMALL_STATE(1808)] = 104397, + [SMALL_STATE(1809)] = 104420, + [SMALL_STATE(1810)] = 104449, + [SMALL_STATE(1811)] = 104470, + [SMALL_STATE(1812)] = 104493, + [SMALL_STATE(1813)] = 104522, [SMALL_STATE(1814)] = 104549, [SMALL_STATE(1815)] = 104578, - [SMALL_STATE(1816)] = 104605, - [SMALL_STATE(1817)] = 104628, - [SMALL_STATE(1818)] = 104657, - [SMALL_STATE(1819)] = 104676, - [SMALL_STATE(1820)] = 104691, - [SMALL_STATE(1821)] = 104720, - [SMALL_STATE(1822)] = 104741, - [SMALL_STATE(1823)] = 104766, - [SMALL_STATE(1824)] = 104787, - [SMALL_STATE(1825)] = 104808, - [SMALL_STATE(1826)] = 104825, - [SMALL_STATE(1827)] = 104844, - [SMALL_STATE(1828)] = 104865, - [SMALL_STATE(1829)] = 104892, - [SMALL_STATE(1830)] = 104919, - [SMALL_STATE(1831)] = 104940, - [SMALL_STATE(1832)] = 104961, - [SMALL_STATE(1833)] = 104984, - [SMALL_STATE(1834)] = 105005, + [SMALL_STATE(1816)] = 104599, + [SMALL_STATE(1817)] = 104622, + [SMALL_STATE(1818)] = 104639, + [SMALL_STATE(1819)] = 104660, + [SMALL_STATE(1820)] = 104677, + [SMALL_STATE(1821)] = 104694, + [SMALL_STATE(1822)] = 104713, + [SMALL_STATE(1823)] = 104732, + [SMALL_STATE(1824)] = 104753, + [SMALL_STATE(1825)] = 104782, + [SMALL_STATE(1826)] = 104797, + [SMALL_STATE(1827)] = 104822, + [SMALL_STATE(1828)] = 104849, + [SMALL_STATE(1829)] = 104876, + [SMALL_STATE(1830)] = 104899, + [SMALL_STATE(1831)] = 104918, + [SMALL_STATE(1832)] = 104945, + [SMALL_STATE(1833)] = 104972, + [SMALL_STATE(1834)] = 104997, [SMALL_STATE(1835)] = 105026, [SMALL_STATE(1836)] = 105052, [SMALL_STATE(1837)] = 105078, [SMALL_STATE(1838)] = 105104, - [SMALL_STATE(1839)] = 105122, - [SMALL_STATE(1840)] = 105148, - [SMALL_STATE(1841)] = 105166, - [SMALL_STATE(1842)] = 105184, - [SMALL_STATE(1843)] = 105202, - [SMALL_STATE(1844)] = 105224, - [SMALL_STATE(1845)] = 105248, - [SMALL_STATE(1846)] = 105274, - [SMALL_STATE(1847)] = 105290, - [SMALL_STATE(1848)] = 105308, - [SMALL_STATE(1849)] = 105334, - [SMALL_STATE(1850)] = 105352, - [SMALL_STATE(1851)] = 105376, - [SMALL_STATE(1852)] = 105398, - [SMALL_STATE(1853)] = 105418, - [SMALL_STATE(1854)] = 105442, - [SMALL_STATE(1855)] = 105460, - [SMALL_STATE(1856)] = 105486, - [SMALL_STATE(1857)] = 105512, - [SMALL_STATE(1858)] = 105538, - [SMALL_STATE(1859)] = 105556, - [SMALL_STATE(1860)] = 105582, - [SMALL_STATE(1861)] = 105604, - [SMALL_STATE(1862)] = 105626, - [SMALL_STATE(1863)] = 105652, - [SMALL_STATE(1864)] = 105678, - [SMALL_STATE(1865)] = 105696, + [SMALL_STATE(1839)] = 105128, + [SMALL_STATE(1840)] = 105150, + [SMALL_STATE(1841)] = 105174, + [SMALL_STATE(1842)] = 105194, + [SMALL_STATE(1843)] = 105216, + [SMALL_STATE(1844)] = 105234, + [SMALL_STATE(1845)] = 105250, + [SMALL_STATE(1846)] = 105276, + [SMALL_STATE(1847)] = 105294, + [SMALL_STATE(1848)] = 105320, + [SMALL_STATE(1849)] = 105338, + [SMALL_STATE(1850)] = 105360, + [SMALL_STATE(1851)] = 105382, + [SMALL_STATE(1852)] = 105408, + [SMALL_STATE(1853)] = 105426, + [SMALL_STATE(1854)] = 105448, + [SMALL_STATE(1855)] = 105474, + [SMALL_STATE(1856)] = 105494, + [SMALL_STATE(1857)] = 105516, + [SMALL_STATE(1858)] = 105542, + [SMALL_STATE(1859)] = 105568, + [SMALL_STATE(1860)] = 105590, + [SMALL_STATE(1861)] = 105614, + [SMALL_STATE(1862)] = 105638, + [SMALL_STATE(1863)] = 105656, + [SMALL_STATE(1864)] = 105682, + [SMALL_STATE(1865)] = 105700, [SMALL_STATE(1866)] = 105718, - [SMALL_STATE(1867)] = 105744, - [SMALL_STATE(1868)] = 105766, - [SMALL_STATE(1869)] = 105792, + [SMALL_STATE(1867)] = 105734, + [SMALL_STATE(1868)] = 105760, + [SMALL_STATE(1869)] = 105782, [SMALL_STATE(1870)] = 105808, - [SMALL_STATE(1871)] = 105826, - [SMALL_STATE(1872)] = 105844, - [SMALL_STATE(1873)] = 105866, - [SMALL_STATE(1874)] = 105890, - [SMALL_STATE(1875)] = 105912, - [SMALL_STATE(1876)] = 105934, - [SMALL_STATE(1877)] = 105952, - [SMALL_STATE(1878)] = 105974, - [SMALL_STATE(1879)] = 106000, - [SMALL_STATE(1880)] = 106026, - [SMALL_STATE(1881)] = 106046, - [SMALL_STATE(1882)] = 106072, - [SMALL_STATE(1883)] = 106092, - [SMALL_STATE(1884)] = 106114, + [SMALL_STATE(1871)] = 105834, + [SMALL_STATE(1872)] = 105860, + [SMALL_STATE(1873)] = 105882, + [SMALL_STATE(1874)] = 105900, + [SMALL_STATE(1875)] = 105920, + [SMALL_STATE(1876)] = 105946, + [SMALL_STATE(1877)] = 105972, + [SMALL_STATE(1878)] = 105990, + [SMALL_STATE(1879)] = 106012, + [SMALL_STATE(1880)] = 106034, + [SMALL_STATE(1881)] = 106052, + [SMALL_STATE(1882)] = 106078, + [SMALL_STATE(1883)] = 106096, + [SMALL_STATE(1884)] = 106122, [SMALL_STATE(1885)] = 106140, - [SMALL_STATE(1886)] = 106157, - [SMALL_STATE(1887)] = 106174, - [SMALL_STATE(1888)] = 106191, - [SMALL_STATE(1889)] = 106204, - [SMALL_STATE(1890)] = 106217, - [SMALL_STATE(1891)] = 106230, - [SMALL_STATE(1892)] = 106247, - [SMALL_STATE(1893)] = 106268, - [SMALL_STATE(1894)] = 106285, - [SMALL_STATE(1895)] = 106298, - [SMALL_STATE(1896)] = 106311, - [SMALL_STATE(1897)] = 106324, - [SMALL_STATE(1898)] = 106345, - [SMALL_STATE(1899)] = 106362, - [SMALL_STATE(1900)] = 106379, - [SMALL_STATE(1901)] = 106396, - [SMALL_STATE(1902)] = 106413, - [SMALL_STATE(1903)] = 106434, - [SMALL_STATE(1904)] = 106449, - [SMALL_STATE(1905)] = 106472, - [SMALL_STATE(1906)] = 106493, - [SMALL_STATE(1907)] = 106510, - [SMALL_STATE(1908)] = 106531, - [SMALL_STATE(1909)] = 106546, - [SMALL_STATE(1910)] = 106567, - [SMALL_STATE(1911)] = 106588, - [SMALL_STATE(1912)] = 106609, - [SMALL_STATE(1913)] = 106632, - [SMALL_STATE(1914)] = 106649, - [SMALL_STATE(1915)] = 106670, - [SMALL_STATE(1916)] = 106687, - [SMALL_STATE(1917)] = 106708, - [SMALL_STATE(1918)] = 106725, - [SMALL_STATE(1919)] = 106738, - [SMALL_STATE(1920)] = 106759, - [SMALL_STATE(1921)] = 106774, - [SMALL_STATE(1922)] = 106795, + [SMALL_STATE(1886)] = 106163, + [SMALL_STATE(1887)] = 106184, + [SMALL_STATE(1888)] = 106201, + [SMALL_STATE(1889)] = 106214, + [SMALL_STATE(1890)] = 106235, + [SMALL_STATE(1891)] = 106248, + [SMALL_STATE(1892)] = 106265, + [SMALL_STATE(1893)] = 106278, + [SMALL_STATE(1894)] = 106295, + [SMALL_STATE(1895)] = 106316, + [SMALL_STATE(1896)] = 106337, + [SMALL_STATE(1897)] = 106350, + [SMALL_STATE(1898)] = 106369, + [SMALL_STATE(1899)] = 106382, + [SMALL_STATE(1900)] = 106395, + [SMALL_STATE(1901)] = 106416, + [SMALL_STATE(1902)] = 106429, + [SMALL_STATE(1903)] = 106450, + [SMALL_STATE(1904)] = 106471, + [SMALL_STATE(1905)] = 106492, + [SMALL_STATE(1906)] = 106509, + [SMALL_STATE(1907)] = 106526, + [SMALL_STATE(1908)] = 106543, + [SMALL_STATE(1909)] = 106564, + [SMALL_STATE(1910)] = 106585, + [SMALL_STATE(1911)] = 106602, + [SMALL_STATE(1912)] = 106623, + [SMALL_STATE(1913)] = 106646, + [SMALL_STATE(1914)] = 106667, + [SMALL_STATE(1915)] = 106684, + [SMALL_STATE(1916)] = 106697, + [SMALL_STATE(1917)] = 106714, + [SMALL_STATE(1918)] = 106735, + [SMALL_STATE(1919)] = 106752, + [SMALL_STATE(1920)] = 106769, + [SMALL_STATE(1921)] = 106784, + [SMALL_STATE(1922)] = 106801, [SMALL_STATE(1923)] = 106818, - [SMALL_STATE(1924)] = 106831, - [SMALL_STATE(1925)] = 106848, - [SMALL_STATE(1926)] = 106861, - [SMALL_STATE(1927)] = 106878, - [SMALL_STATE(1928)] = 106899, - [SMALL_STATE(1929)] = 106916, - [SMALL_STATE(1930)] = 106937, - [SMALL_STATE(1931)] = 106958, - [SMALL_STATE(1932)] = 106979, - [SMALL_STATE(1933)] = 106992, - [SMALL_STATE(1934)] = 107009, - [SMALL_STATE(1935)] = 107026, - [SMALL_STATE(1936)] = 107043, - [SMALL_STATE(1937)] = 107064, - [SMALL_STATE(1938)] = 107079, - [SMALL_STATE(1939)] = 107096, - [SMALL_STATE(1940)] = 107111, - [SMALL_STATE(1941)] = 107128, - [SMALL_STATE(1942)] = 107149, - [SMALL_STATE(1943)] = 107164, - [SMALL_STATE(1944)] = 107181, - [SMALL_STATE(1945)] = 107202, - [SMALL_STATE(1946)] = 107215, - [SMALL_STATE(1947)] = 107232, - [SMALL_STATE(1948)] = 107255, - [SMALL_STATE(1949)] = 107276, - [SMALL_STATE(1950)] = 107297, - [SMALL_STATE(1951)] = 107310, - [SMALL_STATE(1952)] = 107327, - [SMALL_STATE(1953)] = 107340, - [SMALL_STATE(1954)] = 107355, - [SMALL_STATE(1955)] = 107372, - [SMALL_STATE(1956)] = 107389, - [SMALL_STATE(1957)] = 107410, - [SMALL_STATE(1958)] = 107429, - [SMALL_STATE(1959)] = 107452, - [SMALL_STATE(1960)] = 107469, - [SMALL_STATE(1961)] = 107482, - [SMALL_STATE(1962)] = 107499, - [SMALL_STATE(1963)] = 107516, - [SMALL_STATE(1964)] = 107529, - [SMALL_STATE(1965)] = 107546, - [SMALL_STATE(1966)] = 107567, - [SMALL_STATE(1967)] = 107580, - [SMALL_STATE(1968)] = 107603, - [SMALL_STATE(1969)] = 107618, - [SMALL_STATE(1970)] = 107639, - [SMALL_STATE(1971)] = 107660, - [SMALL_STATE(1972)] = 107673, - [SMALL_STATE(1973)] = 107692, - [SMALL_STATE(1974)] = 107713, - [SMALL_STATE(1975)] = 107726, - [SMALL_STATE(1976)] = 107743, - [SMALL_STATE(1977)] = 107760, - [SMALL_STATE(1978)] = 107777, - [SMALL_STATE(1979)] = 107798, - [SMALL_STATE(1980)] = 107819, - [SMALL_STATE(1981)] = 107836, - [SMALL_STATE(1982)] = 107857, - [SMALL_STATE(1983)] = 107878, - [SMALL_STATE(1984)] = 107891, - [SMALL_STATE(1985)] = 107912, - [SMALL_STATE(1986)] = 107935, - [SMALL_STATE(1987)] = 107952, - [SMALL_STATE(1988)] = 107973, - [SMALL_STATE(1989)] = 107990, - [SMALL_STATE(1990)] = 108003, - [SMALL_STATE(1991)] = 108016, + [SMALL_STATE(1924)] = 106841, + [SMALL_STATE(1925)] = 106858, + [SMALL_STATE(1926)] = 106873, + [SMALL_STATE(1927)] = 106894, + [SMALL_STATE(1928)] = 106911, + [SMALL_STATE(1929)] = 106928, + [SMALL_STATE(1930)] = 106945, + [SMALL_STATE(1931)] = 106966, + [SMALL_STATE(1932)] = 106987, + [SMALL_STATE(1933)] = 107000, + [SMALL_STATE(1934)] = 107017, + [SMALL_STATE(1935)] = 107034, + [SMALL_STATE(1936)] = 107047, + [SMALL_STATE(1937)] = 107068, + [SMALL_STATE(1938)] = 107089, + [SMALL_STATE(1939)] = 107102, + [SMALL_STATE(1940)] = 107115, + [SMALL_STATE(1941)] = 107138, + [SMALL_STATE(1942)] = 107159, + [SMALL_STATE(1943)] = 107180, + [SMALL_STATE(1944)] = 107197, + [SMALL_STATE(1945)] = 107214, + [SMALL_STATE(1946)] = 107235, + [SMALL_STATE(1947)] = 107258, + [SMALL_STATE(1948)] = 107279, + [SMALL_STATE(1949)] = 107296, + [SMALL_STATE(1950)] = 107313, + [SMALL_STATE(1951)] = 107328, + [SMALL_STATE(1952)] = 107341, + [SMALL_STATE(1953)] = 107358, + [SMALL_STATE(1954)] = 107379, + [SMALL_STATE(1955)] = 107392, + [SMALL_STATE(1956)] = 107411, + [SMALL_STATE(1957)] = 107428, + [SMALL_STATE(1958)] = 107449, + [SMALL_STATE(1959)] = 107470, + [SMALL_STATE(1960)] = 107487, + [SMALL_STATE(1961)] = 107502, + [SMALL_STATE(1962)] = 107519, + [SMALL_STATE(1963)] = 107536, + [SMALL_STATE(1964)] = 107549, + [SMALL_STATE(1965)] = 107566, + [SMALL_STATE(1966)] = 107579, + [SMALL_STATE(1967)] = 107594, + [SMALL_STATE(1968)] = 107607, + [SMALL_STATE(1969)] = 107630, + [SMALL_STATE(1970)] = 107647, + [SMALL_STATE(1971)] = 107668, + [SMALL_STATE(1972)] = 107685, + [SMALL_STATE(1973)] = 107702, + [SMALL_STATE(1974)] = 107725, + [SMALL_STATE(1975)] = 107746, + [SMALL_STATE(1976)] = 107759, + [SMALL_STATE(1977)] = 107774, + [SMALL_STATE(1978)] = 107787, + [SMALL_STATE(1979)] = 107804, + [SMALL_STATE(1980)] = 107825, + [SMALL_STATE(1981)] = 107840, + [SMALL_STATE(1982)] = 107853, + [SMALL_STATE(1983)] = 107868, + [SMALL_STATE(1984)] = 107889, + [SMALL_STATE(1985)] = 107906, + [SMALL_STATE(1986)] = 107923, + [SMALL_STATE(1987)] = 107936, + [SMALL_STATE(1988)] = 107949, + [SMALL_STATE(1989)] = 107970, + [SMALL_STATE(1990)] = 107991, + [SMALL_STATE(1991)] = 108008, [SMALL_STATE(1992)] = 108029, - [SMALL_STATE(1993)] = 108049, - [SMALL_STATE(1994)] = 108065, - [SMALL_STATE(1995)] = 108083, - [SMALL_STATE(1996)] = 108095, - [SMALL_STATE(1997)] = 108107, - [SMALL_STATE(1998)] = 108127, - [SMALL_STATE(1999)] = 108139, - [SMALL_STATE(2000)] = 108159, - [SMALL_STATE(2001)] = 108179, - [SMALL_STATE(2002)] = 108191, - [SMALL_STATE(2003)] = 108203, - [SMALL_STATE(2004)] = 108215, - [SMALL_STATE(2005)] = 108231, - [SMALL_STATE(2006)] = 108249, - [SMALL_STATE(2007)] = 108261, - [SMALL_STATE(2008)] = 108273, - [SMALL_STATE(2009)] = 108285, - [SMALL_STATE(2010)] = 108305, - [SMALL_STATE(2011)] = 108317, - [SMALL_STATE(2012)] = 108337, - [SMALL_STATE(2013)] = 108355, - [SMALL_STATE(2014)] = 108375, - [SMALL_STATE(2015)] = 108395, - [SMALL_STATE(2016)] = 108411, - [SMALL_STATE(2017)] = 108423, - [SMALL_STATE(2018)] = 108435, - [SMALL_STATE(2019)] = 108447, - [SMALL_STATE(2020)] = 108467, - [SMALL_STATE(2021)] = 108479, - [SMALL_STATE(2022)] = 108491, - [SMALL_STATE(2023)] = 108505, - [SMALL_STATE(2024)] = 108517, - [SMALL_STATE(2025)] = 108533, - [SMALL_STATE(2026)] = 108545, - [SMALL_STATE(2027)] = 108557, - [SMALL_STATE(2028)] = 108569, - [SMALL_STATE(2029)] = 108581, - [SMALL_STATE(2030)] = 108593, - [SMALL_STATE(2031)] = 108605, - [SMALL_STATE(2032)] = 108617, - [SMALL_STATE(2033)] = 108629, - [SMALL_STATE(2034)] = 108641, + [SMALL_STATE(1993)] = 108041, + [SMALL_STATE(1994)] = 108053, + [SMALL_STATE(1995)] = 108073, + [SMALL_STATE(1996)] = 108087, + [SMALL_STATE(1997)] = 108103, + [SMALL_STATE(1998)] = 108115, + [SMALL_STATE(1999)] = 108127, + [SMALL_STATE(2000)] = 108145, + [SMALL_STATE(2001)] = 108161, + [SMALL_STATE(2002)] = 108173, + [SMALL_STATE(2003)] = 108185, + [SMALL_STATE(2004)] = 108203, + [SMALL_STATE(2005)] = 108221, + [SMALL_STATE(2006)] = 108241, + [SMALL_STATE(2007)] = 108255, + [SMALL_STATE(2008)] = 108267, + [SMALL_STATE(2009)] = 108283, + [SMALL_STATE(2010)] = 108303, + [SMALL_STATE(2011)] = 108323, + [SMALL_STATE(2012)] = 108335, + [SMALL_STATE(2013)] = 108351, + [SMALL_STATE(2014)] = 108363, + [SMALL_STATE(2015)] = 108375, + [SMALL_STATE(2016)] = 108395, + [SMALL_STATE(2017)] = 108407, + [SMALL_STATE(2018)] = 108419, + [SMALL_STATE(2019)] = 108431, + [SMALL_STATE(2020)] = 108443, + [SMALL_STATE(2021)] = 108459, + [SMALL_STATE(2022)] = 108479, + [SMALL_STATE(2023)] = 108495, + [SMALL_STATE(2024)] = 108507, + [SMALL_STATE(2025)] = 108519, + [SMALL_STATE(2026)] = 108539, + [SMALL_STATE(2027)] = 108553, + [SMALL_STATE(2028)] = 108565, + [SMALL_STATE(2029)] = 108577, + [SMALL_STATE(2030)] = 108597, + [SMALL_STATE(2031)] = 108613, + [SMALL_STATE(2032)] = 108625, + [SMALL_STATE(2033)] = 108637, + [SMALL_STATE(2034)] = 108649, [SMALL_STATE(2035)] = 108661, - [SMALL_STATE(2036)] = 108679, - [SMALL_STATE(2037)] = 108699, - [SMALL_STATE(2038)] = 108719, - [SMALL_STATE(2039)] = 108731, - [SMALL_STATE(2040)] = 108743, - [SMALL_STATE(2041)] = 108755, - [SMALL_STATE(2042)] = 108767, - [SMALL_STATE(2043)] = 108779, - [SMALL_STATE(2044)] = 108791, - [SMALL_STATE(2045)] = 108811, - [SMALL_STATE(2046)] = 108823, - [SMALL_STATE(2047)] = 108835, - [SMALL_STATE(2048)] = 108847, - [SMALL_STATE(2049)] = 108859, - [SMALL_STATE(2050)] = 108879, - [SMALL_STATE(2051)] = 108897, - [SMALL_STATE(2052)] = 108909, - [SMALL_STATE(2053)] = 108921, - [SMALL_STATE(2054)] = 108941, - [SMALL_STATE(2055)] = 108953, - [SMALL_STATE(2056)] = 108965, - [SMALL_STATE(2057)] = 108983, - [SMALL_STATE(2058)] = 108995, - [SMALL_STATE(2059)] = 109015, - [SMALL_STATE(2060)] = 109027, - [SMALL_STATE(2061)] = 109045, - [SMALL_STATE(2062)] = 109057, - [SMALL_STATE(2063)] = 109075, - [SMALL_STATE(2064)] = 109095, - [SMALL_STATE(2065)] = 109115, - [SMALL_STATE(2066)] = 109135, - [SMALL_STATE(2067)] = 109153, - [SMALL_STATE(2068)] = 109167, - [SMALL_STATE(2069)] = 109183, - [SMALL_STATE(2070)] = 109195, - [SMALL_STATE(2071)] = 109215, - [SMALL_STATE(2072)] = 109227, - [SMALL_STATE(2073)] = 109243, - [SMALL_STATE(2074)] = 109259, - [SMALL_STATE(2075)] = 109273, - [SMALL_STATE(2076)] = 109289, - [SMALL_STATE(2077)] = 109309, - [SMALL_STATE(2078)] = 109327, - [SMALL_STATE(2079)] = 109339, - [SMALL_STATE(2080)] = 109359, - [SMALL_STATE(2081)] = 109373, - [SMALL_STATE(2082)] = 109389, - [SMALL_STATE(2083)] = 109401, - [SMALL_STATE(2084)] = 109417, - [SMALL_STATE(2085)] = 109437, - [SMALL_STATE(2086)] = 109455, - [SMALL_STATE(2087)] = 109471, - [SMALL_STATE(2088)] = 109483, - [SMALL_STATE(2089)] = 109503, - [SMALL_STATE(2090)] = 109519, - [SMALL_STATE(2091)] = 109531, - [SMALL_STATE(2092)] = 109551, - [SMALL_STATE(2093)] = 109567, - [SMALL_STATE(2094)] = 109579, - [SMALL_STATE(2095)] = 109599, - [SMALL_STATE(2096)] = 109619, - [SMALL_STATE(2097)] = 109639, - [SMALL_STATE(2098)] = 109653, - [SMALL_STATE(2099)] = 109669, - [SMALL_STATE(2100)] = 109689, - [SMALL_STATE(2101)] = 109709, - [SMALL_STATE(2102)] = 109729, - [SMALL_STATE(2103)] = 109743, - [SMALL_STATE(2104)] = 109759, - [SMALL_STATE(2105)] = 109771, - [SMALL_STATE(2106)] = 109783, - [SMALL_STATE(2107)] = 109795, - [SMALL_STATE(2108)] = 109807, - [SMALL_STATE(2109)] = 109825, + [SMALL_STATE(2036)] = 108681, + [SMALL_STATE(2037)] = 108701, + [SMALL_STATE(2038)] = 108721, + [SMALL_STATE(2039)] = 108739, + [SMALL_STATE(2040)] = 108755, + [SMALL_STATE(2041)] = 108767, + [SMALL_STATE(2042)] = 108783, + [SMALL_STATE(2043)] = 108795, + [SMALL_STATE(2044)] = 108815, + [SMALL_STATE(2045)] = 108835, + [SMALL_STATE(2046)] = 108847, + [SMALL_STATE(2047)] = 108867, + [SMALL_STATE(2048)] = 108887, + [SMALL_STATE(2049)] = 108907, + [SMALL_STATE(2050)] = 108919, + [SMALL_STATE(2051)] = 108931, + [SMALL_STATE(2052)] = 108945, + [SMALL_STATE(2053)] = 108961, + [SMALL_STATE(2054)] = 108973, + [SMALL_STATE(2055)] = 108985, + [SMALL_STATE(2056)] = 109005, + [SMALL_STATE(2057)] = 109017, + [SMALL_STATE(2058)] = 109029, + [SMALL_STATE(2059)] = 109049, + [SMALL_STATE(2060)] = 109067, + [SMALL_STATE(2061)] = 109079, + [SMALL_STATE(2062)] = 109099, + [SMALL_STATE(2063)] = 109111, + [SMALL_STATE(2064)] = 109129, + [SMALL_STATE(2065)] = 109141, + [SMALL_STATE(2066)] = 109153, + [SMALL_STATE(2067)] = 109173, + [SMALL_STATE(2068)] = 109191, + [SMALL_STATE(2069)] = 109207, + [SMALL_STATE(2070)] = 109227, + [SMALL_STATE(2071)] = 109247, + [SMALL_STATE(2072)] = 109267, + [SMALL_STATE(2073)] = 109285, + [SMALL_STATE(2074)] = 109297, + [SMALL_STATE(2075)] = 109309, + [SMALL_STATE(2076)] = 109329, + [SMALL_STATE(2077)] = 109341, + [SMALL_STATE(2078)] = 109353, + [SMALL_STATE(2079)] = 109365, + [SMALL_STATE(2080)] = 109385, + [SMALL_STATE(2081)] = 109397, + [SMALL_STATE(2082)] = 109417, + [SMALL_STATE(2083)] = 109435, + [SMALL_STATE(2084)] = 109451, + [SMALL_STATE(2085)] = 109471, + [SMALL_STATE(2086)] = 109483, + [SMALL_STATE(2087)] = 109503, + [SMALL_STATE(2088)] = 109515, + [SMALL_STATE(2089)] = 109533, + [SMALL_STATE(2090)] = 109545, + [SMALL_STATE(2091)] = 109557, + [SMALL_STATE(2092)] = 109577, + [SMALL_STATE(2093)] = 109595, + [SMALL_STATE(2094)] = 109613, + [SMALL_STATE(2095)] = 109629, + [SMALL_STATE(2096)] = 109649, + [SMALL_STATE(2097)] = 109669, + [SMALL_STATE(2098)] = 109687, + [SMALL_STATE(2099)] = 109701, + [SMALL_STATE(2100)] = 109713, + [SMALL_STATE(2101)] = 109729, + [SMALL_STATE(2102)] = 109741, + [SMALL_STATE(2103)] = 109753, + [SMALL_STATE(2104)] = 109765, + [SMALL_STATE(2105)] = 109779, + [SMALL_STATE(2106)] = 109791, + [SMALL_STATE(2107)] = 109807, + [SMALL_STATE(2108)] = 109819, + [SMALL_STATE(2109)] = 109831, [SMALL_STATE(2110)] = 109843, [SMALL_STATE(2111)] = 109854, - [SMALL_STATE(2112)] = 109869, + [SMALL_STATE(2112)] = 109865, [SMALL_STATE(2113)] = 109880, - [SMALL_STATE(2114)] = 109893, - [SMALL_STATE(2115)] = 109908, - [SMALL_STATE(2116)] = 109919, - [SMALL_STATE(2117)] = 109930, - [SMALL_STATE(2118)] = 109947, - [SMALL_STATE(2119)] = 109964, - [SMALL_STATE(2120)] = 109981, - [SMALL_STATE(2121)] = 109992, - [SMALL_STATE(2122)] = 110003, - [SMALL_STATE(2123)] = 110018, - [SMALL_STATE(2124)] = 110035, - [SMALL_STATE(2125)] = 110046, - [SMALL_STATE(2126)] = 110063, - [SMALL_STATE(2127)] = 110074, - [SMALL_STATE(2128)] = 110091, - [SMALL_STATE(2129)] = 110106, - [SMALL_STATE(2130)] = 110117, - [SMALL_STATE(2131)] = 110134, - [SMALL_STATE(2132)] = 110145, - [SMALL_STATE(2133)] = 110156, - [SMALL_STATE(2134)] = 110167, - [SMALL_STATE(2135)] = 110182, - [SMALL_STATE(2136)] = 110195, - [SMALL_STATE(2137)] = 110210, - [SMALL_STATE(2138)] = 110221, - [SMALL_STATE(2139)] = 110232, - [SMALL_STATE(2140)] = 110243, - [SMALL_STATE(2141)] = 110260, - [SMALL_STATE(2142)] = 110271, - [SMALL_STATE(2143)] = 110282, - [SMALL_STATE(2144)] = 110293, - [SMALL_STATE(2145)] = 110304, - [SMALL_STATE(2146)] = 110315, - [SMALL_STATE(2147)] = 110332, - [SMALL_STATE(2148)] = 110343, - [SMALL_STATE(2149)] = 110354, - [SMALL_STATE(2150)] = 110369, - [SMALL_STATE(2151)] = 110384, - [SMALL_STATE(2152)] = 110395, - [SMALL_STATE(2153)] = 110406, - [SMALL_STATE(2154)] = 110417, - [SMALL_STATE(2155)] = 110428, - [SMALL_STATE(2156)] = 110439, - [SMALL_STATE(2157)] = 110450, - [SMALL_STATE(2158)] = 110461, - [SMALL_STATE(2159)] = 110472, - [SMALL_STATE(2160)] = 110483, - [SMALL_STATE(2161)] = 110494, - [SMALL_STATE(2162)] = 110505, - [SMALL_STATE(2163)] = 110516, - [SMALL_STATE(2164)] = 110527, - [SMALL_STATE(2165)] = 110544, - [SMALL_STATE(2166)] = 110555, - [SMALL_STATE(2167)] = 110566, - [SMALL_STATE(2168)] = 110583, - [SMALL_STATE(2169)] = 110594, - [SMALL_STATE(2170)] = 110605, - [SMALL_STATE(2171)] = 110616, - [SMALL_STATE(2172)] = 110627, - [SMALL_STATE(2173)] = 110638, - [SMALL_STATE(2174)] = 110649, - [SMALL_STATE(2175)] = 110660, - [SMALL_STATE(2176)] = 110671, - [SMALL_STATE(2177)] = 110682, - [SMALL_STATE(2178)] = 110693, - [SMALL_STATE(2179)] = 110704, - [SMALL_STATE(2180)] = 110719, - [SMALL_STATE(2181)] = 110730, - [SMALL_STATE(2182)] = 110741, - [SMALL_STATE(2183)] = 110758, - [SMALL_STATE(2184)] = 110775, - [SMALL_STATE(2185)] = 110792, - [SMALL_STATE(2186)] = 110807, - [SMALL_STATE(2187)] = 110822, - [SMALL_STATE(2188)] = 110833, - [SMALL_STATE(2189)] = 110850, - [SMALL_STATE(2190)] = 110865, - [SMALL_STATE(2191)] = 110880, - [SMALL_STATE(2192)] = 110897, - [SMALL_STATE(2193)] = 110914, - [SMALL_STATE(2194)] = 110931, - [SMALL_STATE(2195)] = 110948, - [SMALL_STATE(2196)] = 110965, - [SMALL_STATE(2197)] = 110976, - [SMALL_STATE(2198)] = 110991, - [SMALL_STATE(2199)] = 111008, - [SMALL_STATE(2200)] = 111019, - [SMALL_STATE(2201)] = 111030, - [SMALL_STATE(2202)] = 111041, - [SMALL_STATE(2203)] = 111052, - [SMALL_STATE(2204)] = 111069, - [SMALL_STATE(2205)] = 111080, - [SMALL_STATE(2206)] = 111095, - [SMALL_STATE(2207)] = 111110, - [SMALL_STATE(2208)] = 111121, - [SMALL_STATE(2209)] = 111138, - [SMALL_STATE(2210)] = 111149, - [SMALL_STATE(2211)] = 111160, - [SMALL_STATE(2212)] = 111177, - [SMALL_STATE(2213)] = 111194, - [SMALL_STATE(2214)] = 111209, - [SMALL_STATE(2215)] = 111224, - [SMALL_STATE(2216)] = 111235, - [SMALL_STATE(2217)] = 111246, - [SMALL_STATE(2218)] = 111263, - [SMALL_STATE(2219)] = 111278, - [SMALL_STATE(2220)] = 111289, - [SMALL_STATE(2221)] = 111300, - [SMALL_STATE(2222)] = 111311, - [SMALL_STATE(2223)] = 111322, - [SMALL_STATE(2224)] = 111339, - [SMALL_STATE(2225)] = 111350, - [SMALL_STATE(2226)] = 111365, - [SMALL_STATE(2227)] = 111376, - [SMALL_STATE(2228)] = 111387, - [SMALL_STATE(2229)] = 111398, - [SMALL_STATE(2230)] = 111409, - [SMALL_STATE(2231)] = 111420, - [SMALL_STATE(2232)] = 111431, - [SMALL_STATE(2233)] = 111448, - [SMALL_STATE(2234)] = 111465, - [SMALL_STATE(2235)] = 111482, - [SMALL_STATE(2236)] = 111493, - [SMALL_STATE(2237)] = 111510, - [SMALL_STATE(2238)] = 111527, + [SMALL_STATE(2114)] = 109895, + [SMALL_STATE(2115)] = 109912, + [SMALL_STATE(2116)] = 109929, + [SMALL_STATE(2117)] = 109944, + [SMALL_STATE(2118)] = 109961, + [SMALL_STATE(2119)] = 109976, + [SMALL_STATE(2120)] = 109991, + [SMALL_STATE(2121)] = 110008, + [SMALL_STATE(2122)] = 110025, + [SMALL_STATE(2123)] = 110040, + [SMALL_STATE(2124)] = 110055, + [SMALL_STATE(2125)] = 110070, + [SMALL_STATE(2126)] = 110085, + [SMALL_STATE(2127)] = 110100, + [SMALL_STATE(2128)] = 110115, + [SMALL_STATE(2129)] = 110130, + [SMALL_STATE(2130)] = 110147, + [SMALL_STATE(2131)] = 110162, + [SMALL_STATE(2132)] = 110173, + [SMALL_STATE(2133)] = 110190, + [SMALL_STATE(2134)] = 110203, + [SMALL_STATE(2135)] = 110220, + [SMALL_STATE(2136)] = 110235, + [SMALL_STATE(2137)] = 110252, + [SMALL_STATE(2138)] = 110269, + [SMALL_STATE(2139)] = 110284, + [SMALL_STATE(2140)] = 110299, + [SMALL_STATE(2141)] = 110314, + [SMALL_STATE(2142)] = 110331, + [SMALL_STATE(2143)] = 110348, + [SMALL_STATE(2144)] = 110365, + [SMALL_STATE(2145)] = 110382, + [SMALL_STATE(2146)] = 110397, + [SMALL_STATE(2147)] = 110408, + [SMALL_STATE(2148)] = 110425, + [SMALL_STATE(2149)] = 110442, + [SMALL_STATE(2150)] = 110459, + [SMALL_STATE(2151)] = 110476, + [SMALL_STATE(2152)] = 110493, + [SMALL_STATE(2153)] = 110506, + [SMALL_STATE(2154)] = 110517, + [SMALL_STATE(2155)] = 110532, + [SMALL_STATE(2156)] = 110545, + [SMALL_STATE(2157)] = 110562, + [SMALL_STATE(2158)] = 110579, + [SMALL_STATE(2159)] = 110594, + [SMALL_STATE(2160)] = 110611, + [SMALL_STATE(2161)] = 110628, + [SMALL_STATE(2162)] = 110645, + [SMALL_STATE(2163)] = 110662, + [SMALL_STATE(2164)] = 110679, + [SMALL_STATE(2165)] = 110690, + [SMALL_STATE(2166)] = 110701, + [SMALL_STATE(2167)] = 110712, + [SMALL_STATE(2168)] = 110723, + [SMALL_STATE(2169)] = 110734, + [SMALL_STATE(2170)] = 110745, + [SMALL_STATE(2171)] = 110756, + [SMALL_STATE(2172)] = 110767, + [SMALL_STATE(2173)] = 110778, + [SMALL_STATE(2174)] = 110789, + [SMALL_STATE(2175)] = 110800, + [SMALL_STATE(2176)] = 110811, + [SMALL_STATE(2177)] = 110828, + [SMALL_STATE(2178)] = 110845, + [SMALL_STATE(2179)] = 110856, + [SMALL_STATE(2180)] = 110867, + [SMALL_STATE(2181)] = 110878, + [SMALL_STATE(2182)] = 110889, + [SMALL_STATE(2183)] = 110906, + [SMALL_STATE(2184)] = 110917, + [SMALL_STATE(2185)] = 110928, + [SMALL_STATE(2186)] = 110939, + [SMALL_STATE(2187)] = 110950, + [SMALL_STATE(2188)] = 110961, + [SMALL_STATE(2189)] = 110972, + [SMALL_STATE(2190)] = 110983, + [SMALL_STATE(2191)] = 110994, + [SMALL_STATE(2192)] = 111005, + [SMALL_STATE(2193)] = 111016, + [SMALL_STATE(2194)] = 111027, + [SMALL_STATE(2195)] = 111038, + [SMALL_STATE(2196)] = 111049, + [SMALL_STATE(2197)] = 111060, + [SMALL_STATE(2198)] = 111071, + [SMALL_STATE(2199)] = 111088, + [SMALL_STATE(2200)] = 111099, + [SMALL_STATE(2201)] = 111116, + [SMALL_STATE(2202)] = 111133, + [SMALL_STATE(2203)] = 111144, + [SMALL_STATE(2204)] = 111155, + [SMALL_STATE(2205)] = 111166, + [SMALL_STATE(2206)] = 111177, + [SMALL_STATE(2207)] = 111188, + [SMALL_STATE(2208)] = 111199, + [SMALL_STATE(2209)] = 111210, + [SMALL_STATE(2210)] = 111221, + [SMALL_STATE(2211)] = 111232, + [SMALL_STATE(2212)] = 111243, + [SMALL_STATE(2213)] = 111254, + [SMALL_STATE(2214)] = 111265, + [SMALL_STATE(2215)] = 111276, + [SMALL_STATE(2216)] = 111287, + [SMALL_STATE(2217)] = 111298, + [SMALL_STATE(2218)] = 111309, + [SMALL_STATE(2219)] = 111320, + [SMALL_STATE(2220)] = 111331, + [SMALL_STATE(2221)] = 111342, + [SMALL_STATE(2222)] = 111353, + [SMALL_STATE(2223)] = 111364, + [SMALL_STATE(2224)] = 111375, + [SMALL_STATE(2225)] = 111386, + [SMALL_STATE(2226)] = 111397, + [SMALL_STATE(2227)] = 111408, + [SMALL_STATE(2228)] = 111419, + [SMALL_STATE(2229)] = 111430, + [SMALL_STATE(2230)] = 111441, + [SMALL_STATE(2231)] = 111452, + [SMALL_STATE(2232)] = 111463, + [SMALL_STATE(2233)] = 111474, + [SMALL_STATE(2234)] = 111485, + [SMALL_STATE(2235)] = 111496, + [SMALL_STATE(2236)] = 111507, + [SMALL_STATE(2237)] = 111518, + [SMALL_STATE(2238)] = 111529, [SMALL_STATE(2239)] = 111540, [SMALL_STATE(2240)] = 111554, - [SMALL_STATE(2241)] = 111568, - [SMALL_STATE(2242)] = 111582, - [SMALL_STATE(2243)] = 111596, - [SMALL_STATE(2244)] = 111610, - [SMALL_STATE(2245)] = 111624, - [SMALL_STATE(2246)] = 111638, - [SMALL_STATE(2247)] = 111652, - [SMALL_STATE(2248)] = 111666, - [SMALL_STATE(2249)] = 111680, - [SMALL_STATE(2250)] = 111694, - [SMALL_STATE(2251)] = 111708, - [SMALL_STATE(2252)] = 111722, - [SMALL_STATE(2253)] = 111736, - [SMALL_STATE(2254)] = 111750, - [SMALL_STATE(2255)] = 111764, - [SMALL_STATE(2256)] = 111778, - [SMALL_STATE(2257)] = 111792, - [SMALL_STATE(2258)] = 111802, - [SMALL_STATE(2259)] = 111816, - [SMALL_STATE(2260)] = 111828, - [SMALL_STATE(2261)] = 111842, - [SMALL_STATE(2262)] = 111854, - [SMALL_STATE(2263)] = 111868, + [SMALL_STATE(2241)] = 111564, + [SMALL_STATE(2242)] = 111578, + [SMALL_STATE(2243)] = 111592, + [SMALL_STATE(2244)] = 111606, + [SMALL_STATE(2245)] = 111620, + [SMALL_STATE(2246)] = 111630, + [SMALL_STATE(2247)] = 111644, + [SMALL_STATE(2248)] = 111658, + [SMALL_STATE(2249)] = 111672, + [SMALL_STATE(2250)] = 111686, + [SMALL_STATE(2251)] = 111700, + [SMALL_STATE(2252)] = 111714, + [SMALL_STATE(2253)] = 111726, + [SMALL_STATE(2254)] = 111740, + [SMALL_STATE(2255)] = 111754, + [SMALL_STATE(2256)] = 111768, + [SMALL_STATE(2257)] = 111782, + [SMALL_STATE(2258)] = 111796, + [SMALL_STATE(2259)] = 111810, + [SMALL_STATE(2260)] = 111824, + [SMALL_STATE(2261)] = 111838, + [SMALL_STATE(2262)] = 111850, + [SMALL_STATE(2263)] = 111864, [SMALL_STATE(2264)] = 111878, - [SMALL_STATE(2265)] = 111892, + [SMALL_STATE(2265)] = 111890, [SMALL_STATE(2266)] = 111904, [SMALL_STATE(2267)] = 111918, [SMALL_STATE(2268)] = 111932, [SMALL_STATE(2269)] = 111946, [SMALL_STATE(2270)] = 111960, - [SMALL_STATE(2271)] = 111974, - [SMALL_STATE(2272)] = 111988, - [SMALL_STATE(2273)] = 112002, - [SMALL_STATE(2274)] = 112016, - [SMALL_STATE(2275)] = 112030, - [SMALL_STATE(2276)] = 112044, - [SMALL_STATE(2277)] = 112058, - [SMALL_STATE(2278)] = 112072, + [SMALL_STATE(2271)] = 111972, + [SMALL_STATE(2272)] = 111986, + [SMALL_STATE(2273)] = 112000, + [SMALL_STATE(2274)] = 112014, + [SMALL_STATE(2275)] = 112028, + [SMALL_STATE(2276)] = 112042, + [SMALL_STATE(2277)] = 112056, + [SMALL_STATE(2278)] = 112070, [SMALL_STATE(2279)] = 112084, [SMALL_STATE(2280)] = 112098, - [SMALL_STATE(2281)] = 112110, - [SMALL_STATE(2282)] = 112122, - [SMALL_STATE(2283)] = 112136, - [SMALL_STATE(2284)] = 112150, - [SMALL_STATE(2285)] = 112164, - [SMALL_STATE(2286)] = 112178, - [SMALL_STATE(2287)] = 112192, - [SMALL_STATE(2288)] = 112206, + [SMALL_STATE(2281)] = 112112, + [SMALL_STATE(2282)] = 112126, + [SMALL_STATE(2283)] = 112140, + [SMALL_STATE(2284)] = 112154, + [SMALL_STATE(2285)] = 112168, + [SMALL_STATE(2286)] = 112182, + [SMALL_STATE(2287)] = 112196, + [SMALL_STATE(2288)] = 112208, [SMALL_STATE(2289)] = 112218, [SMALL_STATE(2290)] = 112232, [SMALL_STATE(2291)] = 112246, [SMALL_STATE(2292)] = 112260, [SMALL_STATE(2293)] = 112274, - [SMALL_STATE(2294)] = 112288, - [SMALL_STATE(2295)] = 112302, - [SMALL_STATE(2296)] = 112316, - [SMALL_STATE(2297)] = 112330, - [SMALL_STATE(2298)] = 112344, - [SMALL_STATE(2299)] = 112358, - [SMALL_STATE(2300)] = 112372, - [SMALL_STATE(2301)] = 112382, - [SMALL_STATE(2302)] = 112396, - [SMALL_STATE(2303)] = 112406, - [SMALL_STATE(2304)] = 112420, - [SMALL_STATE(2305)] = 112430, - [SMALL_STATE(2306)] = 112444, + [SMALL_STATE(2294)] = 112284, + [SMALL_STATE(2295)] = 112298, + [SMALL_STATE(2296)] = 112312, + [SMALL_STATE(2297)] = 112326, + [SMALL_STATE(2298)] = 112338, + [SMALL_STATE(2299)] = 112348, + [SMALL_STATE(2300)] = 112362, + [SMALL_STATE(2301)] = 112376, + [SMALL_STATE(2302)] = 112390, + [SMALL_STATE(2303)] = 112404, + [SMALL_STATE(2304)] = 112414, + [SMALL_STATE(2305)] = 112428, + [SMALL_STATE(2306)] = 112440, [SMALL_STATE(2307)] = 112454, [SMALL_STATE(2308)] = 112468, [SMALL_STATE(2309)] = 112482, [SMALL_STATE(2310)] = 112496, [SMALL_STATE(2311)] = 112510, [SMALL_STATE(2312)] = 112524, - [SMALL_STATE(2313)] = 112534, - [SMALL_STATE(2314)] = 112548, - [SMALL_STATE(2315)] = 112562, + [SMALL_STATE(2313)] = 112538, + [SMALL_STATE(2314)] = 112552, + [SMALL_STATE(2315)] = 112566, [SMALL_STATE(2316)] = 112576, [SMALL_STATE(2317)] = 112590, [SMALL_STATE(2318)] = 112604, [SMALL_STATE(2319)] = 112618, [SMALL_STATE(2320)] = 112632, [SMALL_STATE(2321)] = 112646, - [SMALL_STATE(2322)] = 112660, - [SMALL_STATE(2323)] = 112674, - [SMALL_STATE(2324)] = 112688, - [SMALL_STATE(2325)] = 112702, - [SMALL_STATE(2326)] = 112716, - [SMALL_STATE(2327)] = 112730, - [SMALL_STATE(2328)] = 112744, - [SMALL_STATE(2329)] = 112758, - [SMALL_STATE(2330)] = 112772, - [SMALL_STATE(2331)] = 112786, - [SMALL_STATE(2332)] = 112800, - [SMALL_STATE(2333)] = 112814, - [SMALL_STATE(2334)] = 112828, - [SMALL_STATE(2335)] = 112842, - [SMALL_STATE(2336)] = 112856, - [SMALL_STATE(2337)] = 112870, - [SMALL_STATE(2338)] = 112884, - [SMALL_STATE(2339)] = 112898, - [SMALL_STATE(2340)] = 112908, - [SMALL_STATE(2341)] = 112922, - [SMALL_STATE(2342)] = 112936, - [SMALL_STATE(2343)] = 112950, - [SMALL_STATE(2344)] = 112964, - [SMALL_STATE(2345)] = 112978, - [SMALL_STATE(2346)] = 112992, - [SMALL_STATE(2347)] = 113006, - [SMALL_STATE(2348)] = 113020, - [SMALL_STATE(2349)] = 113034, - [SMALL_STATE(2350)] = 113044, - [SMALL_STATE(2351)] = 113058, - [SMALL_STATE(2352)] = 113068, - [SMALL_STATE(2353)] = 113082, - [SMALL_STATE(2354)] = 113096, - [SMALL_STATE(2355)] = 113110, - [SMALL_STATE(2356)] = 113124, - [SMALL_STATE(2357)] = 113138, - [SMALL_STATE(2358)] = 113152, - [SMALL_STATE(2359)] = 113166, - [SMALL_STATE(2360)] = 113178, - [SMALL_STATE(2361)] = 113192, - [SMALL_STATE(2362)] = 113206, - [SMALL_STATE(2363)] = 113220, - [SMALL_STATE(2364)] = 113234, - [SMALL_STATE(2365)] = 113248, - [SMALL_STATE(2366)] = 113262, - [SMALL_STATE(2367)] = 113276, - [SMALL_STATE(2368)] = 113286, - [SMALL_STATE(2369)] = 113300, - [SMALL_STATE(2370)] = 113314, - [SMALL_STATE(2371)] = 113328, - [SMALL_STATE(2372)] = 113340, - [SMALL_STATE(2373)] = 113354, - [SMALL_STATE(2374)] = 113368, - [SMALL_STATE(2375)] = 113382, - [SMALL_STATE(2376)] = 113396, - [SMALL_STATE(2377)] = 113410, - [SMALL_STATE(2378)] = 113424, - [SMALL_STATE(2379)] = 113438, - [SMALL_STATE(2380)] = 113452, - [SMALL_STATE(2381)] = 113466, - [SMALL_STATE(2382)] = 113480, - [SMALL_STATE(2383)] = 113494, - [SMALL_STATE(2384)] = 113508, - [SMALL_STATE(2385)] = 113522, - [SMALL_STATE(2386)] = 113534, - [SMALL_STATE(2387)] = 113548, - [SMALL_STATE(2388)] = 113562, - [SMALL_STATE(2389)] = 113576, - [SMALL_STATE(2390)] = 113590, - [SMALL_STATE(2391)] = 113604, - [SMALL_STATE(2392)] = 113618, - [SMALL_STATE(2393)] = 113632, - [SMALL_STATE(2394)] = 113646, - [SMALL_STATE(2395)] = 113660, - [SMALL_STATE(2396)] = 113674, - [SMALL_STATE(2397)] = 113686, - [SMALL_STATE(2398)] = 113700, - [SMALL_STATE(2399)] = 113714, - [SMALL_STATE(2400)] = 113728, - [SMALL_STATE(2401)] = 113742, - [SMALL_STATE(2402)] = 113756, - [SMALL_STATE(2403)] = 113770, - [SMALL_STATE(2404)] = 113784, - [SMALL_STATE(2405)] = 113798, - [SMALL_STATE(2406)] = 113808, - [SMALL_STATE(2407)] = 113822, - [SMALL_STATE(2408)] = 113836, - [SMALL_STATE(2409)] = 113850, - [SMALL_STATE(2410)] = 113864, - [SMALL_STATE(2411)] = 113878, - [SMALL_STATE(2412)] = 113890, - [SMALL_STATE(2413)] = 113902, - [SMALL_STATE(2414)] = 113916, - [SMALL_STATE(2415)] = 113930, - [SMALL_STATE(2416)] = 113944, - [SMALL_STATE(2417)] = 113958, - [SMALL_STATE(2418)] = 113970, - [SMALL_STATE(2419)] = 113984, - [SMALL_STATE(2420)] = 113998, - [SMALL_STATE(2421)] = 114012, - [SMALL_STATE(2422)] = 114026, - [SMALL_STATE(2423)] = 114040, - [SMALL_STATE(2424)] = 114054, - [SMALL_STATE(2425)] = 114068, - [SMALL_STATE(2426)] = 114082, - [SMALL_STATE(2427)] = 114094, - [SMALL_STATE(2428)] = 114108, - [SMALL_STATE(2429)] = 114122, - [SMALL_STATE(2430)] = 114136, - [SMALL_STATE(2431)] = 114150, - [SMALL_STATE(2432)] = 114164, - [SMALL_STATE(2433)] = 114174, - [SMALL_STATE(2434)] = 114188, - [SMALL_STATE(2435)] = 114202, - [SMALL_STATE(2436)] = 114216, - [SMALL_STATE(2437)] = 114230, - [SMALL_STATE(2438)] = 114244, - [SMALL_STATE(2439)] = 114258, - [SMALL_STATE(2440)] = 114272, - [SMALL_STATE(2441)] = 114286, - [SMALL_STATE(2442)] = 114300, - [SMALL_STATE(2443)] = 114314, - [SMALL_STATE(2444)] = 114328, - [SMALL_STATE(2445)] = 114340, - [SMALL_STATE(2446)] = 114350, - [SMALL_STATE(2447)] = 114364, - [SMALL_STATE(2448)] = 114378, - [SMALL_STATE(2449)] = 114392, - [SMALL_STATE(2450)] = 114406, - [SMALL_STATE(2451)] = 114420, - [SMALL_STATE(2452)] = 114434, - [SMALL_STATE(2453)] = 114448, - [SMALL_STATE(2454)] = 114462, - [SMALL_STATE(2455)] = 114476, - [SMALL_STATE(2456)] = 114490, - [SMALL_STATE(2457)] = 114504, - [SMALL_STATE(2458)] = 114518, - [SMALL_STATE(2459)] = 114530, - [SMALL_STATE(2460)] = 114544, - [SMALL_STATE(2461)] = 114558, - [SMALL_STATE(2462)] = 114572, - [SMALL_STATE(2463)] = 114586, - [SMALL_STATE(2464)] = 114600, - [SMALL_STATE(2465)] = 114614, - [SMALL_STATE(2466)] = 114628, - [SMALL_STATE(2467)] = 114642, - [SMALL_STATE(2468)] = 114656, - [SMALL_STATE(2469)] = 114670, - [SMALL_STATE(2470)] = 114684, - [SMALL_STATE(2471)] = 114698, - [SMALL_STATE(2472)] = 114712, - [SMALL_STATE(2473)] = 114726, - [SMALL_STATE(2474)] = 114740, - [SMALL_STATE(2475)] = 114754, - [SMALL_STATE(2476)] = 114768, - [SMALL_STATE(2477)] = 114780, - [SMALL_STATE(2478)] = 114794, - [SMALL_STATE(2479)] = 114808, - [SMALL_STATE(2480)] = 114822, - [SMALL_STATE(2481)] = 114836, - [SMALL_STATE(2482)] = 114850, - [SMALL_STATE(2483)] = 114864, - [SMALL_STATE(2484)] = 114878, - [SMALL_STATE(2485)] = 114892, - [SMALL_STATE(2486)] = 114906, - [SMALL_STATE(2487)] = 114920, - [SMALL_STATE(2488)] = 114932, - [SMALL_STATE(2489)] = 114944, - [SMALL_STATE(2490)] = 114956, - [SMALL_STATE(2491)] = 114968, - [SMALL_STATE(2492)] = 114980, + [SMALL_STATE(2322)] = 112656, + [SMALL_STATE(2323)] = 112670, + [SMALL_STATE(2324)] = 112682, + [SMALL_STATE(2325)] = 112692, + [SMALL_STATE(2326)] = 112704, + [SMALL_STATE(2327)] = 112716, + [SMALL_STATE(2328)] = 112728, + [SMALL_STATE(2329)] = 112742, + [SMALL_STATE(2330)] = 112756, + [SMALL_STATE(2331)] = 112768, + [SMALL_STATE(2332)] = 112780, + [SMALL_STATE(2333)] = 112794, + [SMALL_STATE(2334)] = 112806, + [SMALL_STATE(2335)] = 112820, + [SMALL_STATE(2336)] = 112834, + [SMALL_STATE(2337)] = 112848, + [SMALL_STATE(2338)] = 112862, + [SMALL_STATE(2339)] = 112876, + [SMALL_STATE(2340)] = 112890, + [SMALL_STATE(2341)] = 112904, + [SMALL_STATE(2342)] = 112918, + [SMALL_STATE(2343)] = 112932, + [SMALL_STATE(2344)] = 112946, + [SMALL_STATE(2345)] = 112960, + [SMALL_STATE(2346)] = 112974, + [SMALL_STATE(2347)] = 112988, + [SMALL_STATE(2348)] = 113002, + [SMALL_STATE(2349)] = 113016, + [SMALL_STATE(2350)] = 113030, + [SMALL_STATE(2351)] = 113044, + [SMALL_STATE(2352)] = 113058, + [SMALL_STATE(2353)] = 113072, + [SMALL_STATE(2354)] = 113086, + [SMALL_STATE(2355)] = 113100, + [SMALL_STATE(2356)] = 113114, + [SMALL_STATE(2357)] = 113128, + [SMALL_STATE(2358)] = 113142, + [SMALL_STATE(2359)] = 113156, + [SMALL_STATE(2360)] = 113170, + [SMALL_STATE(2361)] = 113184, + [SMALL_STATE(2362)] = 113198, + [SMALL_STATE(2363)] = 113212, + [SMALL_STATE(2364)] = 113226, + [SMALL_STATE(2365)] = 113240, + [SMALL_STATE(2366)] = 113254, + [SMALL_STATE(2367)] = 113268, + [SMALL_STATE(2368)] = 113282, + [SMALL_STATE(2369)] = 113296, + [SMALL_STATE(2370)] = 113310, + [SMALL_STATE(2371)] = 113324, + [SMALL_STATE(2372)] = 113336, + [SMALL_STATE(2373)] = 113346, + [SMALL_STATE(2374)] = 113360, + [SMALL_STATE(2375)] = 113372, + [SMALL_STATE(2376)] = 113386, + [SMALL_STATE(2377)] = 113400, + [SMALL_STATE(2378)] = 113412, + [SMALL_STATE(2379)] = 113426, + [SMALL_STATE(2380)] = 113436, + [SMALL_STATE(2381)] = 113450, + [SMALL_STATE(2382)] = 113464, + [SMALL_STATE(2383)] = 113478, + [SMALL_STATE(2384)] = 113492, + [SMALL_STATE(2385)] = 113506, + [SMALL_STATE(2386)] = 113520, + [SMALL_STATE(2387)] = 113530, + [SMALL_STATE(2388)] = 113544, + [SMALL_STATE(2389)] = 113558, + [SMALL_STATE(2390)] = 113572, + [SMALL_STATE(2391)] = 113586, + [SMALL_STATE(2392)] = 113600, + [SMALL_STATE(2393)] = 113612, + [SMALL_STATE(2394)] = 113622, + [SMALL_STATE(2395)] = 113636, + [SMALL_STATE(2396)] = 113650, + [SMALL_STATE(2397)] = 113662, + [SMALL_STATE(2398)] = 113676, + [SMALL_STATE(2399)] = 113690, + [SMALL_STATE(2400)] = 113704, + [SMALL_STATE(2401)] = 113718, + [SMALL_STATE(2402)] = 113730, + [SMALL_STATE(2403)] = 113744, + [SMALL_STATE(2404)] = 113758, + [SMALL_STATE(2405)] = 113772, + [SMALL_STATE(2406)] = 113786, + [SMALL_STATE(2407)] = 113800, + [SMALL_STATE(2408)] = 113814, + [SMALL_STATE(2409)] = 113828, + [SMALL_STATE(2410)] = 113842, + [SMALL_STATE(2411)] = 113856, + [SMALL_STATE(2412)] = 113870, + [SMALL_STATE(2413)] = 113882, + [SMALL_STATE(2414)] = 113896, + [SMALL_STATE(2415)] = 113910, + [SMALL_STATE(2416)] = 113924, + [SMALL_STATE(2417)] = 113938, + [SMALL_STATE(2418)] = 113952, + [SMALL_STATE(2419)] = 113966, + [SMALL_STATE(2420)] = 113980, + [SMALL_STATE(2421)] = 113994, + [SMALL_STATE(2422)] = 114008, + [SMALL_STATE(2423)] = 114020, + [SMALL_STATE(2424)] = 114034, + [SMALL_STATE(2425)] = 114048, + [SMALL_STATE(2426)] = 114062, + [SMALL_STATE(2427)] = 114076, + [SMALL_STATE(2428)] = 114090, + [SMALL_STATE(2429)] = 114104, + [SMALL_STATE(2430)] = 114114, + [SMALL_STATE(2431)] = 114128, + [SMALL_STATE(2432)] = 114142, + [SMALL_STATE(2433)] = 114156, + [SMALL_STATE(2434)] = 114170, + [SMALL_STATE(2435)] = 114184, + [SMALL_STATE(2436)] = 114198, + [SMALL_STATE(2437)] = 114212, + [SMALL_STATE(2438)] = 114226, + [SMALL_STATE(2439)] = 114240, + [SMALL_STATE(2440)] = 114254, + [SMALL_STATE(2441)] = 114268, + [SMALL_STATE(2442)] = 114282, + [SMALL_STATE(2443)] = 114296, + [SMALL_STATE(2444)] = 114310, + [SMALL_STATE(2445)] = 114324, + [SMALL_STATE(2446)] = 114338, + [SMALL_STATE(2447)] = 114352, + [SMALL_STATE(2448)] = 114366, + [SMALL_STATE(2449)] = 114380, + [SMALL_STATE(2450)] = 114394, + [SMALL_STATE(2451)] = 114408, + [SMALL_STATE(2452)] = 114422, + [SMALL_STATE(2453)] = 114434, + [SMALL_STATE(2454)] = 114448, + [SMALL_STATE(2455)] = 114462, + [SMALL_STATE(2456)] = 114476, + [SMALL_STATE(2457)] = 114490, + [SMALL_STATE(2458)] = 114504, + [SMALL_STATE(2459)] = 114518, + [SMALL_STATE(2460)] = 114532, + [SMALL_STATE(2461)] = 114546, + [SMALL_STATE(2462)] = 114560, + [SMALL_STATE(2463)] = 114574, + [SMALL_STATE(2464)] = 114588, + [SMALL_STATE(2465)] = 114602, + [SMALL_STATE(2466)] = 114616, + [SMALL_STATE(2467)] = 114630, + [SMALL_STATE(2468)] = 114644, + [SMALL_STATE(2469)] = 114658, + [SMALL_STATE(2470)] = 114672, + [SMALL_STATE(2471)] = 114686, + [SMALL_STATE(2472)] = 114700, + [SMALL_STATE(2473)] = 114714, + [SMALL_STATE(2474)] = 114728, + [SMALL_STATE(2475)] = 114742, + [SMALL_STATE(2476)] = 114756, + [SMALL_STATE(2477)] = 114770, + [SMALL_STATE(2478)] = 114784, + [SMALL_STATE(2479)] = 114798, + [SMALL_STATE(2480)] = 114812, + [SMALL_STATE(2481)] = 114826, + [SMALL_STATE(2482)] = 114840, + [SMALL_STATE(2483)] = 114852, + [SMALL_STATE(2484)] = 114866, + [SMALL_STATE(2485)] = 114880, + [SMALL_STATE(2486)] = 114894, + [SMALL_STATE(2487)] = 114908, + [SMALL_STATE(2488)] = 114922, + [SMALL_STATE(2489)] = 114936, + [SMALL_STATE(2490)] = 114950, + [SMALL_STATE(2491)] = 114964, + [SMALL_STATE(2492)] = 114978, [SMALL_STATE(2493)] = 114992, [SMALL_STATE(2494)] = 115006, [SMALL_STATE(2495)] = 115020, @@ -126547,104 +126547,104 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2497)] = 115048, [SMALL_STATE(2498)] = 115062, [SMALL_STATE(2499)] = 115076, - [SMALL_STATE(2500)] = 115087, - [SMALL_STATE(2501)] = 115098, - [SMALL_STATE(2502)] = 115109, - [SMALL_STATE(2503)] = 115118, - [SMALL_STATE(2504)] = 115127, - [SMALL_STATE(2505)] = 115138, - [SMALL_STATE(2506)] = 115147, - [SMALL_STATE(2507)] = 115156, - [SMALL_STATE(2508)] = 115165, - [SMALL_STATE(2509)] = 115174, - [SMALL_STATE(2510)] = 115183, - [SMALL_STATE(2511)] = 115194, - [SMALL_STATE(2512)] = 115203, - [SMALL_STATE(2513)] = 115214, - [SMALL_STATE(2514)] = 115223, - [SMALL_STATE(2515)] = 115232, - [SMALL_STATE(2516)] = 115241, - [SMALL_STATE(2517)] = 115250, - [SMALL_STATE(2518)] = 115259, - [SMALL_STATE(2519)] = 115268, - [SMALL_STATE(2520)] = 115277, - [SMALL_STATE(2521)] = 115288, - [SMALL_STATE(2522)] = 115297, - [SMALL_STATE(2523)] = 115308, - [SMALL_STATE(2524)] = 115317, - [SMALL_STATE(2525)] = 115326, - [SMALL_STATE(2526)] = 115335, - [SMALL_STATE(2527)] = 115344, - [SMALL_STATE(2528)] = 115353, - [SMALL_STATE(2529)] = 115362, - [SMALL_STATE(2530)] = 115371, - [SMALL_STATE(2531)] = 115380, - [SMALL_STATE(2532)] = 115389, - [SMALL_STATE(2533)] = 115398, - [SMALL_STATE(2534)] = 115407, - [SMALL_STATE(2535)] = 115416, - [SMALL_STATE(2536)] = 115425, - [SMALL_STATE(2537)] = 115436, - [SMALL_STATE(2538)] = 115445, + [SMALL_STATE(2500)] = 115085, + [SMALL_STATE(2501)] = 115094, + [SMALL_STATE(2502)] = 115103, + [SMALL_STATE(2503)] = 115112, + [SMALL_STATE(2504)] = 115121, + [SMALL_STATE(2505)] = 115130, + [SMALL_STATE(2506)] = 115139, + [SMALL_STATE(2507)] = 115148, + [SMALL_STATE(2508)] = 115159, + [SMALL_STATE(2509)] = 115168, + [SMALL_STATE(2510)] = 115179, + [SMALL_STATE(2511)] = 115188, + [SMALL_STATE(2512)] = 115197, + [SMALL_STATE(2513)] = 115206, + [SMALL_STATE(2514)] = 115215, + [SMALL_STATE(2515)] = 115224, + [SMALL_STATE(2516)] = 115233, + [SMALL_STATE(2517)] = 115242, + [SMALL_STATE(2518)] = 115251, + [SMALL_STATE(2519)] = 115262, + [SMALL_STATE(2520)] = 115271, + [SMALL_STATE(2521)] = 115280, + [SMALL_STATE(2522)] = 115289, + [SMALL_STATE(2523)] = 115298, + [SMALL_STATE(2524)] = 115307, + [SMALL_STATE(2525)] = 115316, + [SMALL_STATE(2526)] = 115325, + [SMALL_STATE(2527)] = 115336, + [SMALL_STATE(2528)] = 115347, + [SMALL_STATE(2529)] = 115356, + [SMALL_STATE(2530)] = 115365, + [SMALL_STATE(2531)] = 115374, + [SMALL_STATE(2532)] = 115385, + [SMALL_STATE(2533)] = 115394, + [SMALL_STATE(2534)] = 115405, + [SMALL_STATE(2535)] = 115414, + [SMALL_STATE(2536)] = 115423, + [SMALL_STATE(2537)] = 115432, + [SMALL_STATE(2538)] = 115443, [SMALL_STATE(2539)] = 115454, [SMALL_STATE(2540)] = 115465, - [SMALL_STATE(2541)] = 115474, - [SMALL_STATE(2542)] = 115483, - [SMALL_STATE(2543)] = 115492, - [SMALL_STATE(2544)] = 115501, - [SMALL_STATE(2545)] = 115512, - [SMALL_STATE(2546)] = 115521, - [SMALL_STATE(2547)] = 115532, - [SMALL_STATE(2548)] = 115541, - [SMALL_STATE(2549)] = 115550, - [SMALL_STATE(2550)] = 115559, - [SMALL_STATE(2551)] = 115570, - [SMALL_STATE(2552)] = 115581, - [SMALL_STATE(2553)] = 115590, - [SMALL_STATE(2554)] = 115599, - [SMALL_STATE(2555)] = 115608, - [SMALL_STATE(2556)] = 115617, - [SMALL_STATE(2557)] = 115626, - [SMALL_STATE(2558)] = 115635, - [SMALL_STATE(2559)] = 115644, - [SMALL_STATE(2560)] = 115653, - [SMALL_STATE(2561)] = 115662, - [SMALL_STATE(2562)] = 115673, - [SMALL_STATE(2563)] = 115682, - [SMALL_STATE(2564)] = 115693, - [SMALL_STATE(2565)] = 115704, + [SMALL_STATE(2541)] = 115476, + [SMALL_STATE(2542)] = 115487, + [SMALL_STATE(2543)] = 115498, + [SMALL_STATE(2544)] = 115509, + [SMALL_STATE(2545)] = 115518, + [SMALL_STATE(2546)] = 115529, + [SMALL_STATE(2547)] = 115538, + [SMALL_STATE(2548)] = 115549, + [SMALL_STATE(2549)] = 115558, + [SMALL_STATE(2550)] = 115567, + [SMALL_STATE(2551)] = 115576, + [SMALL_STATE(2552)] = 115587, + [SMALL_STATE(2553)] = 115598, + [SMALL_STATE(2554)] = 115607, + [SMALL_STATE(2555)] = 115616, + [SMALL_STATE(2556)] = 115625, + [SMALL_STATE(2557)] = 115634, + [SMALL_STATE(2558)] = 115643, + [SMALL_STATE(2559)] = 115652, + [SMALL_STATE(2560)] = 115661, + [SMALL_STATE(2561)] = 115670, + [SMALL_STATE(2562)] = 115679, + [SMALL_STATE(2563)] = 115688, + [SMALL_STATE(2564)] = 115697, + [SMALL_STATE(2565)] = 115706, [SMALL_STATE(2566)] = 115715, [SMALL_STATE(2567)] = 115724, - [SMALL_STATE(2568)] = 115735, - [SMALL_STATE(2569)] = 115746, - [SMALL_STATE(2570)] = 115755, - [SMALL_STATE(2571)] = 115764, - [SMALL_STATE(2572)] = 115773, + [SMALL_STATE(2568)] = 115733, + [SMALL_STATE(2569)] = 115744, + [SMALL_STATE(2570)] = 115753, + [SMALL_STATE(2571)] = 115762, + [SMALL_STATE(2572)] = 115771, [SMALL_STATE(2573)] = 115782, [SMALL_STATE(2574)] = 115791, [SMALL_STATE(2575)] = 115800, [SMALL_STATE(2576)] = 115809, [SMALL_STATE(2577)] = 115818, - [SMALL_STATE(2578)] = 115827, - [SMALL_STATE(2579)] = 115836, - [SMALL_STATE(2580)] = 115845, - [SMALL_STATE(2581)] = 115854, - [SMALL_STATE(2582)] = 115863, - [SMALL_STATE(2583)] = 115872, - [SMALL_STATE(2584)] = 115881, - [SMALL_STATE(2585)] = 115890, - [SMALL_STATE(2586)] = 115899, - [SMALL_STATE(2587)] = 115908, - [SMALL_STATE(2588)] = 115917, - [SMALL_STATE(2589)] = 115928, - [SMALL_STATE(2590)] = 115937, - [SMALL_STATE(2591)] = 115948, - [SMALL_STATE(2592)] = 115959, - [SMALL_STATE(2593)] = 115968, - [SMALL_STATE(2594)] = 115977, - [SMALL_STATE(2595)] = 115988, - [SMALL_STATE(2596)] = 115997, - [SMALL_STATE(2597)] = 116006, + [SMALL_STATE(2578)] = 115829, + [SMALL_STATE(2579)] = 115838, + [SMALL_STATE(2580)] = 115847, + [SMALL_STATE(2581)] = 115856, + [SMALL_STATE(2582)] = 115867, + [SMALL_STATE(2583)] = 115876, + [SMALL_STATE(2584)] = 115885, + [SMALL_STATE(2585)] = 115894, + [SMALL_STATE(2586)] = 115903, + [SMALL_STATE(2587)] = 115912, + [SMALL_STATE(2588)] = 115921, + [SMALL_STATE(2589)] = 115930, + [SMALL_STATE(2590)] = 115941, + [SMALL_STATE(2591)] = 115950, + [SMALL_STATE(2592)] = 115961, + [SMALL_STATE(2593)] = 115972, + [SMALL_STATE(2594)] = 115981, + [SMALL_STATE(2595)] = 115990, + [SMALL_STATE(2596)] = 115999, + [SMALL_STATE(2597)] = 116008, [SMALL_STATE(2598)] = 116017, [SMALL_STATE(2599)] = 116026, [SMALL_STATE(2600)] = 116035, @@ -126850,2431 +126850,2431 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(626), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2232), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1873), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2534), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2508), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2578), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(604), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2758), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(454), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2783), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2708), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(74), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2760), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(567), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(936), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(214), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(528), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(360), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1672), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(568), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(743), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(535), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2620), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(431), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2772), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(624), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2121), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1838), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(362), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2500), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(590), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(411), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2779), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(607), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(913), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1630), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(357), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(154), + [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2782), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(455), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2781), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2778), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), [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(275), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(298), [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(943), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(947), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), [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(1242), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2630), - [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(308), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(910), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(550), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2743), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(297), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(888), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(592), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(321), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(908), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(322), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(936), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(528), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(290), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(887), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(291), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(913), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(606), [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(920), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(949), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 77), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 77), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 97), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 77), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 77), [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 108), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 108), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 108), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 108), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 61), [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 61), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 42), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 42), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 42), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 42), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 37), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 37), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 54), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 54), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(557), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(605), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 23), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 23), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(606), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(608), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 48), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 48), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 70), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 70), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 48), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 48), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 70), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 70), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 104), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 104), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 127), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 127), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 127), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 127), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 41), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 41), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 52), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 52), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 42), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 42), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 61), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 61), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 60), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 60), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 55), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 55), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(470), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 54), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 54), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(593), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 37), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 37), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(598), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 70), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 70), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(492), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(600), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 48), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 48), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 48), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 48), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 70), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 70), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 23), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 23), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 104), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 104), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 127), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 127), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 127), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 127), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 42), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 42), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 37), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 37), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 52), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 52), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 60), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 60), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 55), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 55), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 41), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 41), [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 112), [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 112), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 37), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 37), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 61), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 61), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 42), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 42), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 113), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 113), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 57), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 57), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 117), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 117), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 124), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 124), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 125), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 125), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 126), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 126), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 42), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 42), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 128), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 128), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 133), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 133), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 62), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 62), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 58), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 58), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 114), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 114), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 61), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 61), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 105), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 105), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 106), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 106), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 107), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 107), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 111), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 111), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 115), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 115), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 39), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 39), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 116), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 116), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 63), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 63), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 53), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 53), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 43), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 43), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 44), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 44), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 56), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 56), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 59), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 59), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 64), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 64), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 61), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 61), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 61), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 61), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 42), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 42), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 114), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 114), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 59), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 59), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 43), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 43), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 62), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 62), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 63), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 63), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 64), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 64), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 53), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 53), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 56), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 56), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 57), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 57), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 111), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 111), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 113), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 113), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 115), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 115), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 107), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 107), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 116), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 116), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 117), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 117), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 133), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 133), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 58), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 58), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 128), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 128), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 106), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 106), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 126), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 126), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 125), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 125), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 124), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 124), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 105), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 105), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 61), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 61), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 42), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 42), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 44), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 44), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 39), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 39), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1672), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 21), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 21), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), - [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 21), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 21), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), + [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1684), - [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), - [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), + [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 34), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 34), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 34), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 34), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 33), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 33), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 33), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 33), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 33), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 33), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 34), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 34), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 33), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 33), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 33), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 33), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 34), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 34), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 33), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 33), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 34), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 34), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 34), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 34), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(901), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(2651), - [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(868), - [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(901), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(928), - [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(864), - [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(928), - [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(898), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(860), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(898), - [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(941), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(867), - [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(941), - [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(940), - [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(863), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(940), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(873), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(948), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(2719), + [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(864), + [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(948), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(955), + [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(862), + [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(955), + [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(877), + [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(867), + [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(877), + [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(940), + [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(863), + [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(940), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(905), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(865), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(905), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(921), [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(866), - [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(873), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), - [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(889), - [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(861), - [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(889), - [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(869), - [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(862), - [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(869), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), - [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(921), + [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(898), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(868), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(898), + [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(961), + [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(861), + [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(961), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 22), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 21), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 47), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 17), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), - [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(569), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(346), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(233), - [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1812), - [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1812), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), + [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(513), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 17), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 21), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 47), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 22), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1816), + [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1816), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(347), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(523), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(509), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [3170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(500), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(492), - [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 22), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 21), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(517), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), - [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2781), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), - [3221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 45), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(482), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(578), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2719), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 69), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2716), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(548), - [3402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2674), - [3405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(553), - [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2791), - [3426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(532), - [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2788), - [3447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(844), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 51), - [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 51), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 108), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 77), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 68), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 18), - [3524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(583), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 18), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 26), - [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 26), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 72), - [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 72), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 26), - [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 26), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 38), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2748), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), - [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(567), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 36), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 50), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 50), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 19), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 46), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 17), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 109), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 47), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), - [3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 109), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 118), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 120), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), - [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 118), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 120), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), - [3804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1553), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2747), - [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 27), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), - [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), SHIFT_REPEAT(556), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), - [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2290), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2206), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1527), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(235), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(381), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), - [4088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(547), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [4225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(559), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 29), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(554), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(855), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 45), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(153), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 71), SHIFT_REPEAT(410), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 71), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2493), - [4406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 119), SHIFT_REPEAT(1548), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 119), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(854), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 49), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 49), - [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(356), - [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(369), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(331), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 33), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 129), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 30), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 130), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 131), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 132), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 75), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 76), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 134), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 135), - [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 110), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 31), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 136), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 137), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 109), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 21), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), - [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 121), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 122), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 123), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 33), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 67), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 52), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4967] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(523), + [3167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(539), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(548), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 21), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), + [3185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2631), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 22), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(509), + [3203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(487), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(559), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 45), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [3277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), + [3280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(504), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [3348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), + [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2753), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [3393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2701), + [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 69), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2651), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [3418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2688), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(589), + [3438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2789), + [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(801), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 72), + [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 72), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), + [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [3476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(607), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 46), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), + [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(430), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 108), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 18), + [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 77), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 19), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), + [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(440), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 26), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 26), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 38), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 51), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 51), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 36), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 50), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 50), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 26), + [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 26), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), + [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 18), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 68), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2716), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [3684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 120), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 109), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 17), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1552), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 47), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 109), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 118), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 120), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2084), + [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 118), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2125), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 27), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), + [3933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2455), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), + [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), SHIFT_REPEAT(491), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2669), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1527), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), + [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [4054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(364), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(599), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [4230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(356), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2329), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 29), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(348), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 45), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(505), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [4405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(462), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 119), SHIFT_REPEAT(1548), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 119), + [4427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(382), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 49), + [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 49), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [4554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 71), SHIFT_REPEAT(426), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 71), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 31), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 75), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 33), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 76), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 67), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 33), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 52), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 110), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), + [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 21), + [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 109), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 121), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 122), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), + [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 123), + [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 129), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 130), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 131), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 132), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 134), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 135), + [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 136), + [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 137), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 30), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5009] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), }; enum ts_external_scanner_symbol_identifiers { diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 17f0e94..799f599 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -47,6 +47,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum {